summaryrefslogtreecommitdiff
path: root/miniany/test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'miniany/test1.c')
-rw-r--r--miniany/test1.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/miniany/test1.c b/miniany/test1.c
index 707ff16..1bfb8cf 100644
--- a/miniany/test1.c
+++ b/miniany/test1.c
@@ -2,8 +2,11 @@
int i;
int j;
+int k;
i = 12+25/5-2*3; // 25/5 -> 5, 12+5 -> 17, 2*3 -> 6, 17-6 -> 11
putint i;
j = i/3+3*4; // 11 / 3 -> 3, 3*4 -> 12, 3+12 -> 15
putint j;
+k = 0;
+putint k;