putchar ::= #foreign("putchar", "libc.so.6") fn(#C int) #C int; toc_putchar ::= fn(x: char) { putchar(x as #C int); } puts ::= fn(x: []char) { for c := x { toc_putchar(c); } toc_putchar('\n'); } puti ::= fn(x: int) { if x < 0 { toc_putchar('-'); // NOTE: don't do x = -x; here to make sure I64_MIN works } if x == 0 { toc_putchar('0'); } else { abs ::= fn(x: int) int { if x < 0 { -x } else { x } }; scan_digit := 1000000000000000000; started := false; while scan_digit > 0 { digit := abs((x / scan_digit) % 10); if digit > 0 { started = true; } if started { toc_putchar((('0' as int) + digit) as char); } scan_digit /= 10; } } toc_putchar('\n'); }