Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
Created March 9, 2011 16:07
Show Gist options
  • Save diegopacheco/862465 to your computer and use it in GitHub Desktop.
Save diegopacheco/862465 to your computer and use it in GitHub Desktop.
HelloWorld
object HelloWorld {
def p(m: String) {
println(m)
}
def main(args: Array[String]) {
p("Hello, world!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment