Files
nub-lang/examples/core/print.nub
nub31 e5227f7a99 ...
2026-02-27 22:32:29 +01:00

8 lines
96 B
Plaintext

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