diff options
author | pacien | 2018-06-06 14:14:55 +0200 |
---|---|---|
committer | pacien | 2018-06-06 14:14:55 +0200 |
commit | 01406ad25ff49d5c5f722f34187d2063cefea5ed (patch) | |
tree | 4d96a701aa1986abe79f2469ffd641c4123749bb /res/test_parameters.tpc | |
parent | 64d73526bf9d39ad9d3f04509f6656abde2240fd (diff) | |
download | tpc-compiler-01406ad25ff49d5c5f722f34187d2063cefea5ed.tar.gz |
require main func and rename tests
Diffstat (limited to 'res/test_parameters.tpc')
-rw-r--r-- | res/test_parameters.tpc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/res/test_parameters.tpc b/res/test_parameters.tpc deleted file mode 100644 index 479fb60..0000000 --- a/res/test_parameters.tpc +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | /* test-table-symboles.tpc */ | ||
2 | |||
3 | /* Test file for simplified translator of a declaration of variables in C */ | ||
4 | |||
5 | void test2(caractere x,caractere y,caractere z){ | ||
6 | print(x); | ||
7 | print(y); | ||
8 | print(z); | ||
9 | } | ||
10 | |||
11 | void test(void){ | ||
12 | test2('a','b','c'); | ||
13 | } | ||
14 | |||
15 | entier main(void) { | ||
16 | test(); | ||
17 | return 0; | ||
18 | } | ||