mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-07 23:37:32 +02:00
Merge pull request #2202 from s-webber/master
[kotlin/en] Add links to other resources
This commit is contained in:
@@ -133,7 +133,7 @@ fun helloWorld(val name : String) {
|
|||||||
The name of the single parameter will be "it".
|
The name of the single parameter will be "it".
|
||||||
*/
|
*/
|
||||||
val notPositive = not {it > 0}
|
val notPositive = not {it > 0}
|
||||||
for (i in (0..4)) {
|
for (i in 0..4) {
|
||||||
println("${notOdd(i)} ${notEven(i)} ${notZero(i)} ${notPositive(i)}")
|
println("${notOdd(i)} ${notEven(i)} ${notZero(i)} ${notPositive(i)}")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -317,5 +317,6 @@ object ObjectExample {
|
|||||||
|
|
||||||
### Further Reading
|
### Further Reading
|
||||||
|
|
||||||
A web-based mini-IDE for Kotlin:
|
* [Kotlin tutorials](https://kotlinlang.org/docs/tutorials/)
|
||||||
[http://try.kotlinlang.org/)
|
* [Try Kotlin in your browser](http://try.kotlinlang.org/)
|
||||||
|
* [A list of Kotlin resources](http://kotlin.link/)
|
||||||
|
Reference in New Issue
Block a user