diff options
author | Adam NAILI | 2018-06-06 03:07:32 +0200 |
---|---|---|
committer | Adam NAILI | 2018-06-06 03:07:32 +0200 |
commit | 64d73526bf9d39ad9d3f04509f6656abde2240fd (patch) | |
tree | c3854b93833b385332a4853ce419247c41a9323b | |
parent | 38771494bada2b71a5e3a320938e6a259c1e208c (diff) | |
download | tpc-compiler-64d73526bf9d39ad9d3f04509f6656abde2240fd.tar.gz |
Update test_global
-rw-r--r-- | res/test_global.tpc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/test_global.tpc b/res/test_global.tpc index 8fda248..d8b7d45 100644 --- a/res/test_global.tpc +++ b/res/test_global.tpc | |||
@@ -6,9 +6,9 @@ entier i; | |||
6 | void calcul(void) { | 6 | void calcul(void) { |
7 | r1=12; | 7 | r1=12; |
8 | r2=13; | 8 | r2=13; |
9 | s = 3; | 9 | i = 3; |
10 | 10 | ||
11 | b = r1 + r2 + s; | 11 | b = r1 + r2 + i; |
12 | print(b); | 12 | print(b); |
13 | } | 13 | } |
14 | 14 | ||