Skip to main content

Ripe

A systems programming language.

Version 0.0.0 - pre-release
hello.rp
extern "C" func puts(s: cstr) i32

func main() {
puts("hello, world")
}
shell
$ ripec hello.rp
$ ./hello
hello, world