diff options
Diffstat (limited to 'res/test-table-symboles.tpc')
-rw-r--r-- | res/test-table-symboles.tpc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/res/test-table-symboles.tpc b/res/test-table-symboles.tpc new file mode 100644 index 0000000..3c12144 --- /dev/null +++ b/res/test-table-symboles.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 | entier r1,b,s,c,r2 ; | ||
5 | caractere letter, digit, punct; | ||
6 | |||
7 | entier main(void) { | ||
8 | r1=12; | ||
9 | r2=24; | ||
10 | b=r1+r2; | ||
11 | punct='.'; | ||
12 | return b; | ||
13 | } | ||