repo.or.cz
/
williamcminus.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
finished 19 (not fully tested...)
[williamcminus.git]
/
assign12
/
tester.pas
blob
ca968c2b27fac83271e7d34c98b5caff5585ce9b
1
PROGRAM
Tester
;
2
3
VAR
4
x
:
integer
;
5
6
FUNCTION
xyz
(
x
,
y
:
integer
) :
integer
;
7
BEGIN
8
xyz
:=
x
+
y
;
9
END
;
10
11
BEGIN
12
x
:=
xyz
(
111
,
222
);
13
writeln
(
x
);
14
END
.