Jump to content

User:Jsruby/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jsruby (talk | contribs) at 03:57, 12 February 2014. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Golo (Programming Language)

Golo is a language built on the Java virtual machine. It is currently in it's beta stages. It uses invokedynamic support, a feature integrated into Java 7 that allows for languages built off of it to handle methods as objects, add and remove properties from objects, and dynamic typing.

It is a functional language that allows for lambda support built in.

Usage

A simple "Hello World" program is implemented below.

module hello.world

function main = |args| { 
  println("Hello world")
}

See Also

  • [www.golo-lang.org Golo Website]