
Don't get spied on – We respect your privacy and provide numerous options to protect it.
Join Siafoo Now
or
Learn More
Scala Hello World
0
Updated over 9 years ago (21 Jun 2009 at 01:46 PM)
recent activity
In Brief | The traditional Hello World application in the Scala programming language... more |
Language | Scala |
# 's
1object HelloWorld {
2 def main(args: Array[String]) {
3 println("Hello, world!")
4 }
5}
The traditional Hello World application in the Scala programming language
Remember to compile the code first:
scalac HelloWorld.scala
scala HelloWorld
Add a Comment