Fixes: #706
Co-Authored-By: Arthur Brugiere <roiarthurb@users.noreply.github.com>
This commit is contained in:
Richie Bendall
2020-03-30 08:10:59 +13:00
parent f69548610f
commit 576783e8f9
2 changed files with 10 additions and 0 deletions

View File

@@ -237,6 +237,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Frink](f%5Cfrink.frink)
* [Fsharp](f%5Cfsharp.fs)
* [Fstar](f%5Cfstar.fst)
* [Gaml](g%5CGAML.gaml)
* [Gammaplex](g%5Cgammaplex.gammaplex)
* [Gasoil](g%5CGASOIL.gasoil)
* [Gecho](g%5Cgecho.gecho)

9
g/GAML.gaml Normal file
View File

@@ -0,0 +1,9 @@
model GAML
global {
init {
write("Hello World");
}
}
experiment GAML {}