dos_compilers/Borland Turbo Pascal v55/TCALC.PAS
2024-07-02 06:49:04 -07:00

18 lines
513 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ Turbo Calc }
{ Copyright (c) 1989 by Borland International, Inc. }
program TCalc;
{ Turbo Pascal 5.5 object-oriented example main module.
Object-oriented spreadsheet program.
See TCALC.DOC for more information about this example.
}
{$S-}
uses TCRun;
begin { Call main procedure. The program is designed this way to make }
Run; { compiles faster. Since the main source file gets compiled every }
end. { every time, it makes sense to make the file as small as possible. }