Eclipse Golo has been terminated

The Eclipse Golo project has been terminated.

The developers have moved on to other personal and professional priorities. Migrating the code base beyond Java 8 has turned out to be too complex due to the Java Platform Module System introduced with Java 9 and strong encapsulation constraints.

We would like to thank all contributors and participants over the years for their enthusiasm!

Thanks for the ride, it's been a fun one 🙏

Golo
— a lightweight dynamic language for the JVM.

back to the front page

 Now available: Golo 3.0.0 milestone 2

Milky purple

We are pleased to share the second milestone towards Golo 3.0.0.

Sticking to our roadmap, we will make a new milestone available every 6 weeks.

What’s new?

The highlight of this milestone is clearly the new collection comprehensions contributed by Yannick Loiseau. You can now turn code like:

let l = list[]
foreach x in [1..4] {
  foreach y in ["a", "b", "c"] {
    l: add([x, y])
  }
}

into:

let l = list[ [x, y] foreach x in [1..4] foreach y in ["a", "b", "c"] ]

comments powered by Disqus


Copyright © 2012 – 2018 INSA Lyon, CITI Laboratory and contributors.

Privacy Policy | Terms of Use | Copyright Agent | Eclipse Public License | Legal Resources