Category:Golo: Difference between revisions

From Rosetta Code
Content added Content deleted
(Golo stub page)
 
(Main entry for Golo)
Line 1: Line 1:
{{stub}}{{language}}
{{language|Golo
|LCT=yes}}
{{language programming paradigm|Imperative,Functional}}
Golo is a simple, dynamic, weakly-typed language for the [[runs on vm::Java Virtual Machine]]. Originally built as a showcase on how to build a language runtime with [[docs.oracle.com/javase/7/docs/technotes/guides/vm/multiple-language-support.html invokedynamic]] introduced with Java 7 / OpenJDK 7. The language is now an Eclipse Foundation project under incubation.

Golo 2.1.0 is licensed under the terms of the Apache License, Version 2.0. It will switch to the Eclipse Public License going forward, with the Eclipse Distribution License for samples.
==Main features==

Golo supports imperative and functional programming patterns.
Golo is interoperable with Java and other JVM languages.

==See also==
* [[wp:Golo_(programming_language)|Golo programming language on Wikipedia]]
* [golo-lang.org/ Golo language main web site]
* [projects.eclipse.org/proposals/golo Project incubation page at Eclipse]

Revision as of 04:25, 14 July 2015

Language
Golo
This programming language may be used to instruct a computer to perform a task.
See Also:
Listed below are all of the tasks on Rosetta Code which have been solved using Golo.

Golo is a simple, dynamic, weakly-typed language for the Java Virtual Machine. Originally built as a showcase on how to build a language runtime with docs.oracle.com/javase/7/docs/technotes/guides/vm/multiple-language-support.html invokedynamic introduced with Java 7 / OpenJDK 7. The language is now an Eclipse Foundation project under incubation.

Golo 2.1.0 is licensed under the terms of the Apache License, Version 2.0. It will switch to the Eclipse Public License going forward, with the Eclipse Distribution License for samples.

Main features

Golo supports imperative and functional programming patterns. Golo is interoperable with Java and other JVM languages.

See also