summaryrefslogtreecommitdiff
path: root/std/io.toc
diff options
context:
space:
mode:
Diffstat (limited to 'std/io.toc')
-rw-r--r--std/io.toc2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/io.toc b/std/io.toc
index 7507baf..ab3549b 100644
--- a/std/io.toc
+++ b/std/io.toc
@@ -3,7 +3,7 @@ pkg "io";
c_putchar :: fn(i32) i32 = #foreign "putchar", "libc.so.6";
#export puts ::= fn(x: []char) {
- each c := x {
+ for c := x {
c_putchar(c as i32);
};
c_putchar('\n' as i32);