source: branches/xpascal/Examples/SysUtils.pas

Last change on this file was 230, checked in by chronos, 17 months ago
  • Added: Var function parameters support.
  • Added: Read and ReadLn procedures support.
  • Added: Interpreter now prints into console form.
File size: 357 bytes
Line 
1unit SysUtils;
2
3interface
4
5function Write(Text: string);
6function WriteLn(Text: string);
7function Read(var Text: string);
8function ReadLn(var Text: string);
9
10implementation
11
12function Write(Text: string);
13begin
14end;
15
16function WriteLn(Text: string);
17begin
18end;
19
20function Read(var Text: string);
21begin
22end;
23
24function ReadLn(var Text: string);
25begin
26end;
27
28end.
Note: See TracBrowser for help on using the repository browser.