Category:Golo: Difference between revisions

From Rosetta Code
Content added Content deleted
(Main entry for Golo)
(Fixed broken links)
 
Line 1: Line 1:
{{language|Golo
{{language|Golo
|LCT=yes}}
|LCT=yes}}
{{language programming paradigm|Imperative,Functional}}
{{language programming paradigm|Imperative}}
{{language programming paradigm|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 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 [http://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.
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.
Line 12: Line 13:
==See also==
==See also==
* [[wp:Golo_(programming_language)|Golo programming language on Wikipedia]]
* [[wp:Golo_(programming_language)|Golo programming language on Wikipedia]]
* [golo-lang.org/ Golo language main web site]
* [http://golo-lang.org/ Golo language main web site]
* [projects.eclipse.org/proposals/golo Project incubation page at Eclipse]
* [http://projects.eclipse.org/proposals/golo Project incubation page at Eclipse]

Latest revision as of 09:15, 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 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