From 151b3fa935c05dfb6508ca0083d6a72e70fd9a52 Mon Sep 17 00:00:00 2001 From: hanez Date: Fri, 19 Sep 2025 20:54:17 +0200 Subject: [PATCH] Some play fun updates. --- play.fun | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/play.fun b/play.fun index 2aa6163..4ee87a6 100755 --- a/play.fun +++ b/play.fun @@ -32,7 +32,7 @@ print("Typeof n: " + typeof(n)) fun n() print("n") n() -// Typeof n must be of type function here... Not Sint64. +// Typeof n must be of type Function here... Not Sint64. print("Typeof n: " + typeof(n)) n = 2342 @@ -50,7 +50,7 @@ a = [23, 42] print(a) print(a[0]) -// Why this is possible? Seting n to a string, sets n to 0. Setting an array to 1 works...? This must fail when an a is of type "array", not in this case! +// Why this is possible? Setting n to a string, sets n to 0. Setting an array to 1 works...? This must fail when an a is of type "array", not in this case! a = 1 print(a) @@ -64,5 +64,4 @@ print('\'' + " \n\"Fun\"") print('\'' + " \n\t\"Fun\"") print("Running foo()...") - foo()