diff python/tests/code1.ks @ 108:8267ba1dbce3

Added testcode
author Windel Bouwman
date Tue, 01 Jan 2013 17:17:44 +0100
parents
children 9e552d34bd60
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python/tests/code1.ks	Tue Jan 01 17:17:44 2013 +0100
@@ -0,0 +1,13 @@
+module s;
+var a, b, c:integer;
+
+procedure x();
+begin
+end x;
+
+begin
+  a := 4 + 6;
+  b := a + 2*a - 3;
+  c := a + b
+end s.
+