diff options
-rw-r--r-- | kotlin.html.markdown | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kotlin.html.markdown b/kotlin.html.markdown index a6fac518..48abce3a 100644 --- a/kotlin.html.markdown +++ b/kotlin.html.markdown @@ -127,7 +127,10 @@ fun helloWorld(val name : String) { // Named functions can be specified as arguments using the :: operator. val notOdd = not(::odd) val notEven = not(::even) - // Lambda expressions can be specified as arguments. + /* + Lambda expressions can be specified as arguments. + If it's the only argument parentheses can be omitted. + */ val notZero = not {n -> n == 0} /* If a lambda has only one parameter |