Files
nub-lang/examples/core/print.nub
nub31 e7aad861d3 ...
2026-02-27 23:00:48 +01:00

7 lines
96 B
Plaintext

module core
extern func puts(text: ^u8)
export func print(text: string) {
puts(text.ptr)
}