From 3b2f5b84e40055d6faa7c00a73a1e9ad1e372902 Mon Sep 17 00:00:00 2001 From: lpta <128154389+liptaciak@users.noreply.github.com> Date: Wed, 17 Apr 2024 19:13:05 +0200 Subject: [PATCH] Update main.ba --- examples/hello_world/main.ba | 6 ++++++ 1 file changed, 6 insertions(+) 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 +}