progs/hello-world.scala
author Christian Urban <urbanc@in.tum.de>
Mon, 11 Jun 2018 14:59:09 +0100
changeset 180 d08d24458121
parent 144 41a2b4f2c30c
child 202 3b40cc2a938a
permissions -rw-r--r--
test
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32
45557ad18ea6 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
object Hello extends App { 
144
41a2b4f2c30c updated
Christian Urban <urbanc@in.tum.de>
parents: 32
diff changeset
     2
  val y = 42
41a2b4f2c30c updated
Christian Urban <urbanc@in.tum.de>
parents: 32
diff changeset
     3
  val foo = (1 to 10).toList
32
45557ad18ea6 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
  println("hello world")
45557ad18ea6 updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
}