1
0
Fork 0
forked from fun/fun

Added to_string() and to_number() functions as built-ins.

This commit is contained in:
Johannes Findeisen 2025-09-15 03:45:26 +02:00
commit 559400a866
11 changed files with 113 additions and 3 deletions

View file

@ -1,3 +1,5 @@
#!/usr/bin/env fun
// for-in over an array literal
for x in [1, 2, 3]
print(x) // prints: 1, then 2, then 3