10 lines
158 B
Plaintext
10 lines
158 B
Plaintext
module core
|
|
|
|
export func print(text: string) {
|
|
sys::write(0 text.ptr text.length)
|
|
}
|
|
|
|
export func println(text: string) {
|
|
print(text)
|
|
print("\n")
|
|
} |