add en/string.md

This commit is contained in:
sunface
2022-02-27 13:01:40 +08:00
parent e3bc581d03
commit f7099ea297
18 changed files with 367 additions and 47 deletions

View File

@ -1,6 +1,6 @@
# Summary
- [About Exercise.rs](why-exercise.md)
- [Rust By Practice](why-exercise.md)
- [Variables](variables.md)
- [Basic Types](basic-types/intro.md)
- [Numbers](basic-types/numbers.md)
@ -10,12 +10,13 @@
- [Ownership and Borrowing](ownership/intro.md)
- [Ownership](ownership/ownership.md)
- [Reference and Borrowing](ownership/borrowing.md)
- [Compound Types todo](compound-types/intro.md)
- [string and slice](compound-types/string-slice.md)
- [tuple](compound-types/tuple.md)
- [struct](compound-types/struct.md)
- [enum](compound-types/enum.md)
- [array](compound-types/array.md)
- [Compound Types doing](compound-types/intro.md)
- [string](compound-types/string.md)
- [array todo](compound-types/array.md)
- [slice todo](compound-types/slice.md)
- [tuple todo](compound-types/tuple.md)
- [struct todo](compound-types/struct.md)
- [enum todo](compound-types/enum.md)
- [Flow Control todo](flow-control.md)
- [Pattern Match todo](pattern-match/intro.md)
- [match, if let](pattern-match/match-iflet.md)