summaryrefslogtreecommitdiff
path: root/tests/std/io.toc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/std/io.toc')
-rw-r--r--tests/std/io.toc8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/std/io.toc b/tests/std/io.toc
index 2b9e999..c274631 100644
--- a/tests/std/io.toc
+++ b/tests/std/io.toc
@@ -32,7 +32,13 @@ writei ::= fn(x: int) {
if x == 0 {
toc_putchar('0');
} else {
- abs ::= fn(x: int) int { if x < 0 { -x } else { x } };
+ abs ::= fn(x: int) int {
+ if x < 0 {
+ return -x;
+ } else {
+ return x;
+ }
+ };
scan_digit := 1000000000000000000;
started := false;
while scan_digit > 0 {