Scala Programming. Conditionals and loopsConditional statements and loops in Scala Jan 10, 2021 • Alexandros Giavaras • 1 min read scala conditionals loops programming Overview For loops References Overview For loops a to b: iteration range is $[a,b]$ a until b: iteration range is $[a, b-1]$ This is shown below. for( i <- 0 to 5){ println(i) } 0 1 2 3 4 5 for( i <- 0 until 5){ println(i) } 0 1 2 3 4 References