home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / turbo55 / tp55 / tcalc.pas < prev    next >
Pascal/Delphi Source File  |  1989-05-02  |  513b  |  18 lines

  1.  
  2. { Turbo Calc }
  3. { Copyright (c) 1989 by Borland International, Inc. }
  4.  
  5. program TCalc;
  6. { Turbo Pascal 5.5 object-oriented example main module.
  7.   Object-oriented spreadsheet program.
  8.   See TCALC.DOC for more information about this example.
  9. }
  10.  
  11. {$S-}
  12.  
  13. uses TCRun;
  14.  
  15. begin   { Call main procedure.  The program is designed this way to make    }
  16.   Run;  { compiles faster.  Since the main source file gets compiled every  }
  17. end.    { every time, it makes sense to make the file as small as possible. }
  18.