7 lines
96 B
Plaintext
7 lines
96 B
Plaintext
module core
|
|
|
|
extern func puts(text: ^u8)
|
|
|
|
export func print(text: string) {
|
|
puts(text.ptr)
|
|
} |