Changed around line 9: website https://egel-lang.github.io/
- githubRepo https://github.com/egel-lang/egel
+ githubRepo https://github.com/egel-lang/egel
+
+ example
+ # Rosetta Code example 99 Bottles.
+ #
+ # See: http://rosettacode.org
+
+ import "prelude.eg"
+
+ using System
+
+ def print_rhyme =
+ [ 0 ->
+ print "better go to the store, and buy some more\n"
+ | N ->
+ let _ = print N " bottles of beer on the wall\n" in
+ let _ = print N " bottles of beer\n" in
+ let _ = print "take one down, pass it around\n" in
+ print_rhyme (N - 1) ]
+
+ def main = print_rhyme 99