Last change
on this file since 261 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
File size:
208 bytes
|
Rev | Line | |
---|
[2] | 1 | { in C the result of function can be discarded (e.g. often used with printf),
|
---|
| 2 | this is not allowed in pascal }
|
---|
| 3 |
|
---|
| 4 | program snafu;
|
---|
| 5 |
|
---|
| 6 | function fun(a: integer): integer;
|
---|
| 7 |
|
---|
| 8 | begin
|
---|
| 9 | a := 3
|
---|
| 10 | end;
|
---|
| 11 |
|
---|
| 12 | begin
|
---|
| 13 | fun(42)
|
---|
| 14 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.