1
0
Fork 0
forked from fun/fun

Added basic class support.

This commit is contained in:
Johannes Findeisen 2025-09-26 07:39:13 +02:00
commit 25fe9ad610
3 changed files with 287 additions and 3 deletions

View file

@ -30,9 +30,9 @@ n = 100
print(n)
print("Typeof n: " + typeof(n))
fun n()
print("n()")
n()
fun n(num)
print("n(" + to_string(num) + ")")
n(42)
// Typeof n MUST be of type Function here... Not Sint64.
print("Typeof n: " + typeof(n))