diff --git a/examples/hello.ry b/examples/hello.ry index 3b05145..fbec8fa 100644 --- a/examples/hello.ry +++ b/examples/hello.ry @@ -29,8 +29,6 @@ fn add(a: i32, b: i32) i32 { return a + b; } -// type is void by default -//fn main() { -// print("piss\n"); -// // print("2 + 2 = %d\n", add(1, 2)); -//} +fn main() i32 { + return 0; +}