Kotlin-Koans icon indicating copy to clipboard operation
Kotlin-Koans copied to clipboard

kotlin koans examples

Results 3 Kotlin-Koans issues
Sort by recently updated
recently updated
newest added

Bumps [kotlin-stdlib](https://github.com/JetBrains/kotlin) from 1.0.0-beta-1038 to 1.6.0-M1. Release notes Sourced from kotlin-stdlib's releases. Kotlin 1.6.0-M1 Learn how to install Kotlin 1.6.0-M1. Changelog Android KT-48019 Bundle Kotlin Tooling Metadata into apk artifacts...

dependencies

Bumps [junit](https://github.com/junit-team/junit4) from 4.10 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

`class LazyProperty(val initializer: () -> Int) { private val lazyValue : Int? = null // **Trying to re-assign val property, should be changed to var property** get() { if(field ==...