mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
9 lines
149 B
Odin
9 lines
149 B
Odin
putchar :: proc(c : i32) -> i32 #foreign
|
|
|
|
print_string :: proc(s : string) {
|
|
for i := 0; i < len(s); i++ {
|
|
c := cast(i32)s[i];
|
|
putchar(c);
|
|
}
|
|
}
|