Ignore:
Timestamp:
Jul 19, 2012, 8:16:57 AM (12 years ago)
Author:
chronos
Message:
  • Added: Information text about completion of build process including elapsed time.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Demos/Simple/System.pas

    r61 r66  
    44
    55type
    6   Integer = type;
     6  Integer = type; internal;
     7  String = type; internal;
    78 
    8 procedure ReadLn;
     9function ReadLn: string; internal;
     10procedure WriteLn(Text: string); internal;
    911
    1012implementation
    1113
    12 procedure ReadLn;
     14function ReadLn: string;
     15begin
     16  Result := '';
     17end;
     18
     19procedure WriteLn(Text: string);
    1320begin
    1421end;
Note: See TracChangeset for help on using the changeset viewer.