summaryrefslogtreecommitdiff
path: root/tests/functions/test_implicit_return.zc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functions/test_implicit_return.zc')
-rw-r--r--tests/functions/test_implicit_return.zc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions/test_implicit_return.zc b/tests/functions/test_implicit_return.zc
index bb35134..e82e286 100644
--- a/tests/functions/test_implicit_return.zc
+++ b/tests/functions/test_implicit_return.zc
@@ -12,7 +12,7 @@ test "test_implicit_return" {
println " Done!";
// With variables
- var x = 42;
+ let x = 42;
print "Value is: ";
println "{x}";
}