Login
Remember
Register
Ask a Question
What does this code do?
0
votes
asked
Oct 5, 2021
in
Kotlin
by
rajeshsharma
What does this code do?
bar {
System.out.println("madanswer!")
}
kotlin-code
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 5, 2021
by
rajeshsharma
The code passes lambda function that prints “madanswer!” as an argument into function bar()
...