module core export func print(text: string) { sys::write(0 text.ptr text.length) } export func println(text: string) { print(text) print("\n") }