aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAdam NAILI2018-06-05 23:03:13 +0200
committerAdam NAILI2018-06-05 23:03:13 +0200
commit4cc53658a9503191f41945914e6223ccc5a95717 (patch)
tree3e0f146fdcfc66f35c8bc3a5d7a1aa2d2d1d50bb /res
parent864653f00dff0a8a1f37d8e9a732c1da8309a930 (diff)
downloadtpc-compiler-4cc53658a9503191f41945914e6223ccc5a95717.tar.gz
While handling
Diffstat (limited to 'res')
-rw-r--r--res/test_while.tpc13
1 files changed, 13 insertions, 0 deletions
diff --git a/res/test_while.tpc b/res/test_while.tpc
new file mode 100644
index 0000000..25d04c6
--- /dev/null
+++ b/res/test_while.tpc
@@ -0,0 +1,13 @@
1/* test-table-symboles.tpc */
2
3/* Test file for simplified translator of a declaration of variables in C */
4
5entier main(void) {
6 entier i;
7 i = 0;
8 while(i<=5){
9 print(i);
10 i = i + 1;
11 }
12 return 0;
13}