1
0
Fork 0
forked from fun/fun

Strict syntax checking!

This commit is contained in:
Johannes Findeisen 2025-09-16 07:09:31 +02:00
commit d21378c869
2 changed files with 57 additions and 12 deletions

View file

@ -15,10 +15,10 @@ number n = 10
print(n)
string s = "Hello,\nworld!"
print(s)
print(s)
fun foo()
//print("Have fun!")
print("Have fun!")
print("Running foo()... forever.")
foo()