Skip to content

Instantly share code, notes, and snippets.

@makiftutuncu
Last active December 15, 2015 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makiftutuncu/8a56633d1ccf8dca70e4 to your computer and use it in GitHub Desktop.
Save makiftutuncu/8a56633d1ccf8dca70e4 to your computer and use it in GitHub Desktop.
Scala'da Döngü İfadeleri Yazımdaki Örnek 1
// 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