Merge pull request #117 from kelcecil/golo

Add hello world for golo JVM language
This commit is contained in:
Mike Donaghy
2014-01-23 13:17:04 -08:00

5
g/golo.golo Normal file
View File

@@ -0,0 +1,5 @@
module hello.world
function main = |args| {
println("Hello world")
}