Ignore:
Timestamp:
Jun 26, 2023, 6:08:23 PM (17 months ago)
Author:
chronos
Message:
  • Added: Support for procedures.
  • Added: Project pascal file can be opened from main menu. Last file name is remembered.
  • Modified: Improved XML output of source structure.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/xpascal/Examples/Example.pas

    r230 r233  
    1414end;
    1515
     16procedure Print(Text: string);
    1617begin
     18  WriteLn(Text);
     19end;
     20
     21begin
     22  Print('Test');
     23
    1724  WriteLn('10 * 3 = ' + IntToStr((1 + 2) * (3 + 4)));
    1825
Note: See TracChangeset for help on using the changeset viewer.