aboutsummaryrefslogtreecommitdiff
path: root/check/code-gen/assign.p
diff options
context:
space:
mode:
Diffstat (limited to 'check/code-gen/assign.p')
-rw-r--r--check/code-gen/assign.p6
1 files changed, 6 insertions, 0 deletions
diff --git a/check/code-gen/assign.p b/check/code-gen/assign.p
new file mode 100644
index 0000000..f8473f0
--- /dev/null
+++ b/check/code-gen/assign.p
@@ -0,0 +1,6 @@
+program main (output);
+ var a,b,c,d,e: integer;
+begin
+ a := 1;
+ write(a)
+end.