Skip to main content
hello.rp
extern func puts(s: *i8) i32

func main() {
puts("hello, world")
}
shell
$ ripe run hello.rp
hello, world