11 lines
178 B
Plaintext
11 lines
178 B
Plaintext
module core
|
|
|
|
export extern func malloc(size: u64): ^void
|
|
export extern func free(size: ^void)
|
|
|
|
extern func puts(text: ^u8)
|
|
|
|
export func print(text: string)
|
|
{
|
|
puts(text.ptr)
|
|
} |