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

Variables in Kotlin

A variable is a named area in memory used to store and process data. A variable in Kotlin always has a name, a data type and a value. The name of the variable is a freely selectable identifier that can consist of alphanumeric characters or underscores and must begin with either a letter or an underscore. To define a variable in Kotlin you can do two

Read more

Where and how can you learn Kotlin?

Our Kotlin tutorial offers you an easy way to get started with the topic and expand your knowledge step by step. The content is deliberately written in an understandable way so that developers without experience or even people without programming knowledge can get started with Kotlin development. You start with the basics such as installing the development environment on your computer and creating the first project. You will then be guided through the theoretical learning content of

Read more