add examples/hello.ry
This commit is contained in:
parent
c46229154c
commit
53d41b31e7
2 changed files with 16 additions and 1 deletions
11
examples/hello.ry
Normal file
11
examples/hello.ry
Normal 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));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue