2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/scala/for-loop.scala

3 lines
57 B
Scala
Raw Normal View History

2014-09-13 17:26:09 +02:00
for(a <- 1 until 10){
println("Value of a: " + a );
}