started ch8.2

This commit is contained in:
2025-01-19 13:35:28 -07:00
parent 1624bbb975
commit 583c294453
2 changed files with 13 additions and 2 deletions

10
String.md Normal file
View File

@ -0,0 +1,10 @@
# String
String s are implemented as a collection bytes plus some methods o provide useful functionality when those bytes are interpreted as text.
Strings can do everything that a UTF-8 character can
These attached methods include creating, updating and reading.
Strings are different to other collections, namely how indexing into a ``String`` is complicated by the differences between how people and computers interpret ``String`` data
## What is a String?