diff --git a/examples/hello_world/main.ba b/examples/hello_world/main.ba index 355d739..5d4f3c4 100644 --- a/examples/hello_world/main.ba +++ b/examples/hello_world/main.ba @@ -28,3 +28,9 @@ * */ +@import "std.ba" + +fun main() -> i32 { + println("Hello, World!") + return 0 +}