Advertisement
Guest User

Untitled

a guest
Sep 6th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.16 KB | None | 0 0
  1. object Example1 {
  2.   def main(args: Array[String]): Unit = {
  3.     printf("Hello, world")
  4.   }
  5. }
  6.  
  7. // vs
  8.  
  9. object Example2 extends App {
  10.   printf("Hello, world")
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement