Files
nub-lang/examples/program/main.nub
nub31 16d27c76ab ...
2026-02-28 23:19:57 +01:00

12 lines
170 B
Plaintext

module main
extern func puts(text: ^u8)
func main(): i32 {
core::println("Hello, world!")
let file = file::read_text("file.nub")
puts(file)
return 0
}