1
0
Fork 0
forked from fun/fun

Just playing and having fun...

This commit is contained in:
Johannes Findeisen 2025-09-19 09:15:35 +02:00
commit 6cf1afcde6

View file

@ -9,16 +9,22 @@
* https://opensource.org/license/isc-license-txt
*/
fun foo()
print("Have fun!")
print("Having fun... forever.")
print("Yay, the playground for having fun... ;)")
number n = 10
print(n)
string s = "Hello,\nworld!"
n = "foobar"
print(n)
n = 100
print(n)
string s = 'Have\n"fun!"'
print(s)
fun foo()
print("Have fun!")
print("Running foo()... forever.")
foo()