1
1
Fork 0

Fixed inaccuracy: characters are stored as Unicode values

https://github.com/svtk/AtomicKotlinCourse/issues/24
This commit is contained in:
Svetlana Isakova 2021-07-20 13:22:31 +02:00
parent f0278aa901
commit f9371000aa
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ You can open the hint within IntelliJ IDEA to understand the results.
<div class="hint"> <div class="hint">
Characters are stored as numbers corresponding to their Characters are stored as numbers corresponding to their
[ASCII codes](https://en.wikipedia.org/wiki/ASCII), so adding an integer to a [Unicode](https://en.wikipedia.org/wiki/Unicode) values, so adding an integer to
character produces a new character corresponding to the new code value. a character produces a new character corresponding to the new code value.
</div> </div>