1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 23:41:37 +02:00
rustlings/exercises/strings
2022-07-16 17:28:13 +02:00
..
README.md
strings1.rs
strings2.rs
strings3.rs fix: make strings3.rs comment wording more clear 2022-07-16 17:28:13 +02:00
strings4.rs

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