Kotlin while keyword tutorial shows how to use while loops in Kotlin. Learn about while and do-while loops with practical examples and detailed explanations.
Kotlin write file tutorial shows how to write to a file in Kotlin. The tutorial presents four examples that write to a file in Kotlin.
Kotlin when expression tutorial shows how to use when expressions in Kotlin. When expression is a replacement of a switch statement known from C family of languages.
Kotlin when keyword tutorial shows how to use powerful conditional expressions in Kotlin. Learn about when as statement and expression with examples.
Kotlin where keyword tutorial shows how to apply multiple constraints to generic type parameters in Kotlin. Learn about type parameter constraints with examples.
Kotlin var keyword tutorial shows how to declare and use mutable variables in Kotlin. Learn about variable initialization, type inference, and mutability with examples.
Kotlin vararg keyword tutorial shows how to work with variable number of arguments in Kotlin. Learn about vararg parameters, spread operator, and array conversion with examples.
Kotlin variables tutorial shows how to use variables in Kotlin. A variable is a place to store data. It has a name and a data type.
Kotlin typeof keyword tutorial shows how to perform type checking in Kotlin. Learn about runtime type checking and reflection with examples.
Kotlin val keyword tutorial shows how to declare immutable variables in Kotlin. Learn about read-only variables and their usage with examples.