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 | |
---|
1 | unit SysUtils;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | function Write(Text: string);
|
---|
6 | function WriteLn(Text: string);
|
---|
7 | function Read(var Text: string);
|
---|
8 | function ReadLn(var Text: string);
|
---|
9 |
|
---|
10 | implementation
|
---|
11 |
|
---|
12 | function Write(Text: string);
|
---|
13 | begin
|
---|
14 | end;
|
---|
15 |
|
---|
16 | function WriteLn(Text: string);
|
---|
17 | begin
|
---|
18 | end;
|
---|
19 |
|
---|
20 | function Read(var Text: string);
|
---|
21 | begin
|
---|
22 | end;
|
---|
23 |
|
---|
24 | function ReadLn(var Text: string);
|
---|
25 | begin
|
---|
26 | end;
|
---|
27 |
|
---|
28 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.