diff options
author | ven <vendethiel@hotmail.fr> | 2016-03-19 13:15:52 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2016-03-19 13:15:52 +0100 |
commit | fc9ff35932f7bedca54bcc4c948875ffdb515132 (patch) | |
tree | 872f1d2d32e40a7a16aabac41c3c99cd076f81d8 /kotlin.html.markdown | |
parent | 589caa4ac14f04a19ba1ddc2bdd39c1bfbf73b62 (diff) | |
parent | 9ccc431ea31f53040fd693384ddfeaa75e834fc9 (diff) |
Merge pull request #2202 from s-webber/master
[kotlin/en] Add links to other resources
Diffstat (limited to 'kotlin.html.markdown')
-rw-r--r-- | kotlin.html.markdown | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown index 57f311f9..7b1475a8 100644 --- a/kotlin.html.markdown +++ b/kotlin.html.markdown @@ -133,7 +133,7 @@ fun helloWorld(val name : String) { The name of the single parameter will be "it". */ val notPositive = not {it > 0} - for (i in (0..4)) { + for (i in 0..4) { println("${notOdd(i)} ${notEven(i)} ${notZero(i)} ${notPositive(i)}") } @@ -317,5 +317,6 @@ object ObjectExample { ### Further Reading -A web-based mini-IDE for Kotlin: -[http://try.kotlinlang.org/) +* [Kotlin tutorials](https://kotlinlang.org/docs/tutorials/) +* [Try Kotlin in your browser](http://try.kotlinlang.org/) +* [A list of Kotlin resources](http://kotlin.link/) |