fork download
  1. object Main extends App {
  2. val lazyShit = Map(
  3. ("1", (v: Long){v + 42}),
  4. ("2", (v: Long){v + 100500}))
  5.  
  6. for (n ← Array("1", "2", "3")) println(lazyShit.getOrElse(n, (v: Long)1234)(100));
  7. }
Success #stdin #stdout 0.38s 322240KB
stdin
Standard input is empty
stdout
142
100600
1234