Data types in Kotlin
Kotlin is a statically typed programming language, which means that all variables and expressions are checked for their types during compilation (translating the written source code into executable machine code that can be understood by the computer). If one tries to assign a value to a data type that does not match the expected type, an error will occur and the program will stop compiling. This has the advantage that certain
Read more