aboutsummaryrefslogtreecommitdiff
path: root/res/test_if.tpc
diff options
context:
space:
mode:
Diffstat (limited to 'res/test_if.tpc')
-rw-r--r--res/test_if.tpc22
1 files changed, 0 insertions, 22 deletions
diff --git a/res/test_if.tpc b/res/test_if.tpc
deleted file mode 100644
index 054811b..0000000
--- a/res/test_if.tpc
+++ /dev/null
@@ -1,22 +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 bool1, bool2;
7 bool1 = 0;
8 bool2 = 0;
9 if(bool1 == bool2){
10 if(bool1 != bool2){
11 print('n');
12 }
13 else{
14 if(bool1 <= bool2){
15 print('o');
16 return 0;
17 }
18 print('n');
19 }
20 }
21 return 0;
22}