summaryrefslogtreecommitdiff
path: root/examples/helloWorld.nya
diff options
context:
space:
mode:
Diffstat (limited to 'examples/helloWorld.nya')
-rw-r--r--examples/helloWorld.nya6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/helloWorld.nya b/examples/helloWorld.nya
index 160d9d2..625860c 100644
--- a/examples/helloWorld.nya
+++ b/examples/helloWorld.nya
@@ -1,6 +1,8 @@
import fn puts(str: [u8]) -> i32;
fn main() -> i32 {
- puts("Hello World!");
- return 0;
+ varbl: i32 pog = puts("Hello World!");
+ pog = 8;
+ const value = pog;
+ return value;
}