rayoko/examples/hello.ry

12 lines
182 B
Plaintext
Raw Normal View History

// import std;
2019-09-18 14:37:08 +00:00
fn add(a: i32, b: i32) i32 {
return a + b;
}
// type is void by default
fn main() {
std.fmt.print("piss\n");
std.fmt.print("2 + 2 = %d\n", add(1, 2));
2019-09-18 14:37:08 +00:00
}