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.tpc5
1 files changed, 3 insertions, 2 deletions
diff --git a/res/test_return.tpc b/res/test_return.tpc
index 241a1ba..f450203 100644
--- a/res/test_return.tpc
+++ b/res/test_return.tpc
@@ -4,10 +4,11 @@
4entier r1,b,s,c,r2 ; 4entier r1,b,s,c,r2 ;
5caractere letter, digit, punct; 5caractere letter, digit, punct;
6 6
7entier test(void){ 7caractere test(void){
8} 8}
9 9
10entier main(void) { 10entier main(void) {
11 print(test()); 11 letter = test();
12 print(letter);
12 return 0; 13 return 0;
13} 14}