From 5c4d60eea88bc708748bca4589a834c356c56e4b Mon Sep 17 00:00:00 2001 From: Christian Albrecht Date: Sat, 17 Oct 2015 10:00:02 +0200 Subject: added german ressources and fixed heading --- de-de/scala-de.html.markdown | 14 ++++++++++---- 1 file 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 -- cgit v1.2.3