Skip to content

Instantly share code, notes, and snippets.

@stpettersens
Created September 13, 2010 15:11
Show Gist options
  • Save stpettersens/577434 to your computer and use it in GitHub Desktop.
Save stpettersens/577434 to your computer and use it in GitHub Desktop.
/*
Hello World in Scala
*/
object HelloWorld {
def main(args: Array[String]) {
println("Hello World!")
}
}
- OR -
object HelloWorld extends Application {
println("Hello World!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment