summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2024-08-13 20:36:31 -0500
committerNic Gaffney <gaffney_nic@protonmail.com>2024-08-13 20:36:31 -0500
commit760a9246618862b56bafe3dd5d95a77fdd668a6c (patch)
tree9e85eec354e98f6e6ab916956266438d54780573 /examples
parentb1ad4a1c280d25f92fdb1103edf2faa5e3e1daac (diff)
downloadcalico-760a9246618862b56bafe3dd5d95a77fdd668a6c.tar.gz
Unit tests now pass
Diffstat (limited to 'examples')
-rw-r--r--examples/helloWorld.nya2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/helloWorld.nya b/examples/helloWorld.nya
index 0b8c59b..160d9d2 100644
--- a/examples/helloWorld.nya
+++ b/examples/helloWorld.nya
@@ -1,6 +1,6 @@
import fn puts(str: [u8]) -> i32;
-fn main(argc: i32) -> i32 {
+fn main() -> i32 {
puts("Hello World!");
return 0;
}