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, 2 insertions, 1 deletions
diff --git a/miniany/test1.c b/miniany/test1.c
index d7015e2..707ff16 100644
--- a/miniany/test1.c
+++ b/miniany/test1.c
@@ -4,5 +4,6 @@ int i;
int j;
i = 12+25/5-2*3; // 25/5 -> 5, 12+5 -> 17, 2*3 -> 6, 17-6 -> 11
-j = i/3+3*4; // 11 / 3 -> 3, 3*4 -> 12, 3+12 -> 15
putint i;
+j = i/3+3*4; // 11 / 3 -> 3, 3*4 -> 12, 3+12 -> 15
+putint j;