aboutsummaryrefslogtreecommitdiff
path: root/res/test_return.tpc
diff options
context:
space:
mode:
Diffstat (limited to 'res/test_return.tpc')
-rw-r--r--res/test_return.tpc14
1 files changed, 0 insertions, 14 deletions
diff --git a/res/test_return.tpc b/res/test_return.tpc
deleted file mode 100644
index f450203..0000000
--- a/res/test_return.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
7caractere test(void){
8}
9
10entier main(void) {
11 letter = test();
12 print(letter);
13 return 0;
14}