summaryrefslogtreecommitdiff
path: root/examples/mathTest.nya
diff options
context:
space:
mode:
authorNic Gaffney <gaffney_nic@protonmail.com>2025-02-18 17:13:13 -0600
committerNic Gaffney <gaffney_nic@protonmail.com>2025-02-18 17:13:13 -0600
commit296564bbced8c3fa197ede9b16af60a4f88e350f (patch)
tree7d3e4c1c4a8b68e2ee4a9d38dddf9b6b982aaadf /examples/mathTest.nya
parent8f2595c71bce8d2f14de334d6e1b6378cc9f7cbf (diff)
parent7db4d88fe0455a6f3bd58414afa0565cd4a74f9d (diff)
downloadcalico-296564bbced8c3fa197ede9b16af60a4f88e350f.tar.gz
Merge branch 'repairBranch'
Restored lost progress from previous `git push --force`
Diffstat (limited to 'examples/mathTest.nya')
-rw-r--r--examples/mathTest.nya18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/mathTest.nya b/examples/mathTest.nya
new file mode 100644
index 0000000..f937b79
--- /dev/null
+++ b/examples/mathTest.nya
@@ -0,0 +1,18 @@
+import fn puts(str: [u8]) -> i32;
+
+fn test() -> i32 {
+ const: i32 pog = 5;
+ return pog;
+}
+
+fn main() -> i32 {
+ const: i32 num = 5;
+ const: i32 num2 = test();
+ if (num2 == test()) {
+ puts("Hello World!");
+ }
+ if (num2 == 0) {
+ puts("Shouldn't print");
+ }
+ return num2;
+}