rust-rustlings-Gege-Wang/exercises/strings
github-classroom[bot] 81b66a6126
Initial commit
2023-04-02 07:52:18 +00:00
..
README.md Initial commit 2023-04-02 07:52:18 +00:00
strings1.rs Initial commit 2023-04-02 07:52:18 +00:00
strings2.rs Initial commit 2023-04-02 07:52:18 +00:00
strings3.rs Initial commit 2023-04-02 07:52:18 +00:00
strings4.rs Initial commit 2023-04-02 07:52:18 +00:00

README.md

Strings

Rust has two string types, a string slice (&str) and an owned string (String). We're not going to dictate when you should use which one, but we'll show you how to identify and create them, as well as use them.

Further information