update readme.md

This commit is contained in:
sunface 2022-03-03 14:15:25 +08:00
parent 8c44557784
commit fdbcd77ae7
1 changed files with 0 additions and 23 deletions

View File

@ -69,26 +69,3 @@ fn main() {
}
}
```
## ToC
- [Variables](src/variables.md)
- [Basic Types](src/basic-types/intro.md)
- [Numbers](src/basic-types/numbers.md)
- [Char, Bool and Unit](src/basic-types/char-bool-unit.md)
- [Statements and Expressions](src/basic-types/statements-expressions.md)
- [Functions](src/basic-types/functions.md)
- [Ownership and Borrowing](src/ownership/intro.md)
- [Ownership](src/ownership/ownership.md)
- [Reference and Borrowing](src/ownership/borrowing.md)
- [Compound Types](src/compound-types/intro.md)
- [string](src/compound-types/string.md)
- [Array](src/compound-types/array.md)
- [Slice](src/compound-types/slice.md)
- [Tuple](src/compound-types/tuple.md)
- [Struct](src/compound-types/struct.md)
- [Enum](src/compound-types/enum.md)
- [Flow Control](src/flow-control.md)
- [Pattern Match](src/pattern-match/intro.md)
- [match, matches! and if let](src/pattern-match/match-iflet.md)
- [Patterns](src/pattern-match/patterns.md)