|
Last change
on this file was 20, checked in by george, 16 years ago |
- Přidáno: Analýza páru dalších programových konstrukcí.
- Přidáno: Pár jednoduchých testovacích příkladů pro překladač.
|
|
File size:
241 bytes
|
| Line | |
|---|
| 1 | procedure Test1(Parameter1: Byte);
|
|---|
| 2 | begin
|
|---|
| 3 | end;
|
|---|
| 4 |
|
|---|
| 5 | procedure Test2(Parameter1, Parameter2: Byte);
|
|---|
| 6 | begin
|
|---|
| 7 | end;
|
|---|
| 8 |
|
|---|
| 9 | procedure Test3(Parameter1: Byte; Parameter2: Byte);
|
|---|
| 10 | begin
|
|---|
| 11 | end;
|
|---|
| 12 |
|
|---|
| 13 | begin
|
|---|
| 14 | Test1(1);
|
|---|
| 15 | Test2(1, 2);
|
|---|
| 16 | Test3(1, 2);
|
|---|
| 17 | end.
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.