Skip to content

Commit

Permalink
chore: update wording in basic-types.md (#3887)
Browse files Browse the repository at this point in the history
  • Loading branch information
koshachy authored Nov 7, 2023
1 parent 02dd9ea commit 7776766
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions docs/topics/basic-types.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[//]: # (title: Basic types)

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.
While certain types have an optimized internal representation as primitive values at runtime (such as numbers, characters, booleans and others),
they appear and behave like regular classes to you.

This section describes the basic types used in Kotlin:
* [Numbers](numbers.md) and their [unsigned counterparts](unsigned-integer-types.md)
* [Booleans](booleans.md)
* [Characters](characters.md)
* [Strings](strings.md)
* [Arrays](arrays.md)
* [Arrays](arrays.md)

> [Learn how to perform type checks and casts in Kotlin](typecasts.md).
>
{type="tip"}

0 comments on commit 7776766

Please sign in to comment.