12 lines
170 B
Plaintext
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
|
|
} |