Skip to content

Instantly share code, notes, and snippets.

@ashishb888
Created August 14, 2019 09:54
Show Gist options
  • Save ashishb888/d0aac13ba406d9886850e8371ac9c8de to your computer and use it in GitHub Desktop.
Save ashishb888/d0aac13ba406d9886850e8371ac9c8de to your computer and use it in GitHub Desktop.
Scala "Hello world!" example
object HelloWorld {
def main(args: Array[String]) {
println("Hello world!")
}
}
object HelloWorldWithApp extends App {
println("Hello world!")
}
@ashishb888
Copy link
Author

Getting started with Scala [2.13.0]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment