aboutsummaryrefslogtreecommitdiff
path: root/res/test_while.tpc
diff options
context:
space:
mode:
authorpacien2018-06-06 14:14:55 +0200
committerpacien2018-06-06 14:14:55 +0200
commit01406ad25ff49d5c5f722f34187d2063cefea5ed (patch)
tree4d96a701aa1986abe79f2469ffd641c4123749bb /res/test_while.tpc
parent64d73526bf9d39ad9d3f04509f6656abde2240fd (diff)
downloadtpc-compiler-01406ad25ff49d5c5f722f34187d2063cefea5ed.tar.gz
require main func and rename tests
Diffstat (limited to 'res/test_while.tpc')
-rw-r--r--res/test_while.tpc13
1 files changed, 0 insertions, 13 deletions
diff --git a/res/test_while.tpc b/res/test_while.tpc
deleted file mode 100644
index 25d04c6..0000000
--- a/res/test_while.tpc
+++ /dev/null
@@ -1,13 +0,0 @@
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}