home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l044 / 4.ddi / TCALC.ZIP / TCALC.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1990-10-23  |  429 b   |  21 lines

  1.  
  2. { Turbo Calc }
  3. { Copyright (c) 1989,90 by Borland International, Inc. }
  4.  
  5. program TCalc;
  6. { Turbo Pascal 6.0 object-oriented example main module.
  7.   Object-oriented spreadsheet program.
  8.   See TCALC.DOC for more information about this example.
  9.  
  10.   Specify TCALC.PAS as your primary file when compiling and editing
  11.   TCALC inside the Integrated Development Environment.
  12. }
  13.  
  14. {$S-}
  15.  
  16. uses TCRun;
  17.  
  18. begin   
  19.   Run;
  20. end.
  21.