From f8f644d891ba8dede049e27f8ede47a060b74603 Mon Sep 17 00:00:00 2001 From: s-webber Date: Sat, 19 Mar 2016 10:06:54 +0000 Subject: [PATCH 1/2] removed unnecessary brackets --- kotlin.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin.html.markdown b/kotlin.html.markdown index ae0123a7..47577906 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)}") } From 9ccc431ea31f53040fd693384ddfeaa75e834fc9 Mon Sep 17 00:00:00 2001 From: s-webber Date: Sat, 19 Mar 2016 10:08:01 +0000 Subject: [PATCH 2/2] updated further reading section --- kotlin.html.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kotlin.html.markdown b/kotlin.html.markdown index 47577906..72018f51 100644 --- a/kotlin.html.markdown +++ b/kotlin.html.markdown @@ -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/)