rodrigosantosbr

[Ubuntu >= 12.04] Install Scala Compiler

Dec 30th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!

Installing Scala

sudo apt-get install -y scala

Create a Hello World Scala Program File

nano hello

Write a Hello World Scala Program

// scala hello

object Hello {
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}

Choose OpenJDK java

sudo update-alternatives --config java

Execute the Scala Program

scala hello
Add Comment
Please, Sign In to add comment