Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Turbo Pascal - <b> skeleton form</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                 Skeleton Form


       PROGRAM ProgramName ;

          {$B+}                 { Global - set prior to declaration part }
          {$C+}                 { Global - set prior to declaration part }
          {$F16}                { Global - set prior to declaration part }
          {$G512}               { Global - set prior to declaration part }
          {$P512}               { Global - set prior to declaration part }

       LABEL
          Target1,
          Target2,
          Target3;

       TYPE
          PointerType = Integer;

       CONST
          UnTyped               = 'Untyped string message';
          Typed   : String [80] = 'Typed string message'  ;

       VAR
          IntVar  : Integer     ;
          StrVar  : String [80] ;
          RealVar : Real        ;
          ByteVar : Byte        ;
          CharVar : Char        ;

       BEGIN
       END.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson