The presentation shows how Kotlin fits in the Java Ecosystem while demonstrating some basic language features using sample code: console, spring boot and android app
Person Controller @RestController class PersonController(private val personRepository: PersonRepository) { @GetMapping("/person") fun readAll() = personRepository.findAll() @GetMapping("/person/{id}") fun readOne(@PathVariable id: Long) = personRepository.findById(id) }