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