Skip to content

Instantly share code, notes, and snippets.

@thigm85
Created April 12, 2016 20:54
Show Gist options
  • Save thigm85/2ed18fb89a753e69239d9faa5259b66a to your computer and use it in GitHub Desktop.
Save thigm85/2ed18fb89a753e69239d9faa5259b66a to your computer and use it in GitHub Desktop.
Hello world example for Scala. Reference: http://www.tutorialspoint.com/scala/scala_basic_syntax.htm
object HelloWorld {
/* This is my first java program.
* This will print 'Hello World' as the output
*/
def main(args: Array[String]) {
println("Hello, world!") // prints Hello World
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment