Tweaked example.toy

This commit is contained in:
2022-08-13 16:34:07 +01:00
parent 74e2907f09
commit 633df5f376

View File

@@ -67,3 +67,4 @@ var dict : [string, int] = ["hello": 1, "world":2];
assert true, "This won't be seen"; assert true, "This won't be seen";
assert false, "This is a failed assert, and will end execution"; assert false, "This is a failed assert, and will end execution";
print "This will not be printed because of the above assert";