Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 595 Bytes

basic-types.md

File metadata and controls

12 lines (10 loc) · 595 Bytes

In Kotlin, everything is an object in the sense that you can call member functions and properties on any variable. Some types can have a special internal representation – for example, numbers, characters and booleans can be represented as primitive values at runtime – but to the user they look like ordinary classes.

This section describes the basic types used in Kotlin: