Here is my obligatory Hello World first post. Since I have been doing a lot of scala recently, I will do it in this language.
1 2 3 4 5 |
object HelloWorld { def main(args: Array[String]) { println("Hello, world!") } } |