aboutsummaryrefslogtreecommitdiff
path: root/Testing/General/test-3.p
diff options
context:
space:
mode:
Diffstat (limited to 'Testing/General/test-3.p')
-rw-r--r--Testing/General/test-3.p10
1 files changed, 10 insertions, 0 deletions
diff --git a/Testing/General/test-3.p b/Testing/General/test-3.p
new file mode 100644
index 0000000..b4cbf29
--- /dev/null
+++ b/Testing/General/test-3.p
@@ -0,0 +1,10 @@
+program main( input, output );
+ var a,b,c: integer;
+ function foo( x,y: integer ): integer;
+ begin
+ foo := x + foo( x, y )
+ end;
+begin
+ a := foo( b, c )
+end.
+