diff options
author | Camil Staps | 2017-07-19 13:02:16 +0000 |
---|---|---|
committer | Camil Staps | 2017-07-19 13:02:16 +0000 |
commit | 375f655fc7dbf04378dde69af11accb00cde7205 (patch) | |
tree | 7438782bb5cfd8050dd27c69c595d613be07dac2 /examples | |
parent | Update grammar: no semicolon after while / if (diff) |
Discard unused application results
Diffstat (limited to 'examples')
-rw-r--r-- | examples/while.sil | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/while.sil b/examples/while.sil index 2b531d6..b6ae2cc 100644 --- a/examples/while.sil +++ b/examples/while.sil @@ -8,7 +8,7 @@ Int print(Int n) { Int loop(Int start, Int end) { while (!(start == end)) { - start := print(start); + print(start); start := start + 1; } return start; |