Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update 02_Lambdas.md
Although not very relevant to the understanding of the example
Listed the numbers of the functions in order.
  • Loading branch information
leeyunhome authored Mar 8, 2020
commit dfd1ffd650e49b29864eac951f94071c76ed4180
2 changes: 1 addition & 1 deletion examples/04_functional/02_Lambdas.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ fun main() {

val upperCase6: (String) -> String = String::toUpperCase // 6

println(upperCase2("hello"))
println(upperCase1("hello"))
println(upperCase2("hello"))
println(upperCase3("hello"))
println(upperCase5("hello"))
println(upperCase6("hello"))
Expand Down