add examples/hello.ry

This commit is contained in:
Luna 2019-09-18 11:37:08 -03:00
parent c46229154c
commit 53d41b31e7
2 changed files with 16 additions and 1 deletions

11
examples/hello.ry Normal file
View file

@ -0,0 +1,11 @@
import std;
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));
}