diff python/tests/code1.ks @ 110:9e552d34bd60

Work on compiler
author Windel Bouwman
date Fri, 04 Jan 2013 15:25:58 +0100
parents 8267ba1dbce3
children
line wrap: on
line diff
--- a/python/tests/code1.ks	Tue Jan 01 17:17:44 2013 +0100
+++ b/python/tests/code1.ks	Fri Jan 04 15:25:58 2013 +0100
@@ -1,9 +1,11 @@
 module s;
 var a, b, c:integer;
 
-procedure x();
+procedure test(x:integer);
 begin
-end x;
+   a := x * x + 1337;
+   b := a * x
+end test;
 
 begin
   a := 4 + 6;