diff options
author | Christian Albrecht <christian@coastal-consulting.de> | 2015-10-17 10:00:02 +0200 |
---|---|---|
committer | Christian Albrecht <christian@coastal-consulting.de> | 2015-10-17 10:00:02 +0200 |
commit | 5c4d60eea88bc708748bca4589a834c356c56e4b (patch) | |
tree | fea08706217169f7458537c68d7e70bdc541cb56 /de-de | |
parent | 8811b18ef864b2cdca5b7a4d925a875ac4124884 (diff) |
added german ressources and fixed heading
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/scala-de.html.markdown | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/de-de/scala-de.html.markdown b/de-de/scala-de.html.markdown index 7f698f09..08f582cb 100644 --- a/de-de/scala-de.html.markdown +++ b/de-de/scala-de.html.markdown @@ -293,7 +293,7 @@ i // i ausgeben, res3: Int = 10 // Ein do while Schleife ``` do { - println("x is still less than 10") + println("x ist immer noch weniger wie 10") x += 1 } while (x < 10) ``` @@ -796,15 +796,21 @@ for(line <- Source.fromFile("myfile.txt").getLines()) // Eine Datei schreiben ``` val writer = new PrintWriter("myfile.txt") -writer.write("Writing line for line" + util.Properties.lineSeparator) -writer.write("Another line here" + util.Properties.lineSeparator) +writer.write("Schreibe Zeile" + util.Properties.lineSeparator) +writer.write("Und noch eine Zeile" + util.Properties.lineSeparator) writer.close() ``` -## Further resources +## Weitereführende Hinweise +// DE +* [Scala Tutorial](https://scalatutorial.wordpress.com) +* [Scala Tutorial](http://scalatutorial.de) + +// EN * [Scala for the impatient](http://horstmann.com/scala/) * [Twitter Scala school](http://twitter.github.io/scala_school/) * [The scala documentation](http://docs.scala-lang.org/) * [Try Scala in your browser](http://scalatutorials.com/tour/) +* [Neophytes Guide to Scala](http://danielwestheide.com/scala/neophytes.html) * Join the [Scala user group](https://groups.google.com/forum/#!forum/scala-user)
\ No newline at end of file |