Last active
December 15, 2015 20:17
-
-
Save makiftutuncu/8a56633d1ccf8dca70e4 to your computer and use it in GitHub Desktop.
Scala'da Döngü İfadeleri Yazımdaki Örnek 1
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 | |
int i = 1; | |
while (i <= 10) { | |
System.out.println(i + "!"); | |
i++; | |
} | |
System.out.println("Önüm, arkam, sağım, solum, sobe!"); | |
// Scala | |
var i = 1 | |
while (i <= 10) { | |
println(i + "!") | |
i += 1 | |
} | |
println("Önüm, arkam, sağım, solum, sobe!") | |
// Romantik Scala geliştiricisi | |
while (true) { | |
println("Seni seviyorum!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment