From 6cf1afcde60d8281c9264d9846075f87dae83bd5 Mon Sep 17 00:00:00 2001 From: hanez Date: Fri, 19 Sep 2025 09:15:35 +0200 Subject: [PATCH] Just playing and having fun... --- play.fun | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/play.fun b/play.fun index 086033f..49165d2 100755 --- a/play.fun +++ b/play.fun @@ -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()