fork download
  1. object Main extends App {
  2. var i = 3
  3. for {j <- 1 to 10}
  4. println(i * j)
  5. }
Success #stdin #stdout 0.43s 50508KB
stdin
Standard input is empty
stdout
3
6
9
12
15
18
21
24
27
30