Created
December 15, 2015 20:18
-
-
Save makiftutuncu/ee9165ae0b31a78b3e27 to your computer and use it in GitHub Desktop.
Scala'da Döngü İfadeleri Yazımdaki Örnek 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Java | |
for (int i = 1; i <= 10; i++) { | |
System.out.println(i + "!"); | |
} | |
System.out.println("Önüm, arkam, sağım, solum, sobe!"); | |
// Scala | |
for (i <- 1 to 5) println(i + "!") | |
for (j <- 6 until 11) { | |
println(j + "!") | |
} | |
println("Önüm, arkam, sağım, solum, sobe!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment