#!/usr/bin/env fun /* * This file is part of the Fun programming language. * https://hanez.org/project/fun/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the ISC license. * 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) n = "foobar" print(n) n = 100 print(n) string s = 'Have\n"fun!"' print(s) foo()