Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1 KB

README.md

File metadata and controls

33 lines (25 loc) · 1 KB

JVM Languages Examples

This Repository contains Code Examples for my Talk "Frischer Wind für die JVM – sechs Programmiersprachen im Vergleich" (available in German only).

Presented Languages:

To install the Languages on OS X:

brew install groovy scala leiningen ceylon fantom

Kotlin is best installed with IntelliJ.

Now you can run the `Hello World' examples:

cd groovy && groovy hello_world && cd ..
cd scala && scala helloWorld.scala && cd ..
cd clojure && lein hello-world && cd ..
cd ceylon && ceylon compile de.olofsson && ceylon run de.olofsson && cd ..
cd fantom && fan hello_world.fan && cd ..