Workshop
Converting Java to Kotlin
Corneil du Plessis
@corneil
Bring your own code.
Slide 2
Slide 2 text
No content
Slide 3
Slide 3 text
Agenda
• Brief overview of Kotlin
• Converting Ping Pong TDD – Roman Numerals, more...
• Bring your own code.
• Questions and Discussions
• Java Interoperability
• Interesting language features
Kotlin – Scope functions
Name Invocation It / this Lambda result or object
let receiver.let {} it {}
with with(receiver) {} this {}
run receiver.run {} this {}
apply receiver.apply {} this receiver
also receiver.also {} it receiver