aboutsummaryrefslogtreecommitdiff
path: root/res/test-table-symboles.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-table-symboles.tpc
parent64d73526bf9d39ad9d3f04509f6656abde2240fd (diff)
downloadtpc-compiler-01406ad25ff49d5c5f722f34187d2063cefea5ed.tar.gz
require main func and rename tests
Diffstat (limited to 'res/test-table-symboles.tpc')
-rw-r--r--res/test-table-symboles.tpc14
1 files changed, 0 insertions, 14 deletions
diff --git a/res/test-table-symboles.tpc b/res/test-table-symboles.tpc
deleted file mode 100644
index b2cc31e..0000000
--- a/res/test-table-symboles.tpc
+++ /dev/null
@@ -1,14 +0,0 @@
1/* test-table-symboles.tpc */
2
3/* Test file for simplified translator of a declaration of variables in C */
4entier r1,b,s,c,r2 ;
5caractere letter, digit, punct;
6
7entier main(void) {
8
9 r1=12;
10 r2=24;
11 b=r1+r2;
12 punct='.';
13 return b;
14}