rayoko/examples/hello.ry

12 lines
177 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
2019-09-21 02:40:21 +00:00
//fn main() {
// print("piss\n");
// // print("2 + 2 = %d\n", add(1, 2));
//}