rustlings/exercises/10_strings
2024-03-30 23:47:30 +03:00
..
README.md refactor: swap modules and strings order to be consistent with the rust book 2024-03-30 23:47:30 +03:00
strings1.rs refactor: swap modules and strings order to be consistent with the rust book 2024-03-30 23:47:30 +03:00
strings2.rs refactor: swap modules and strings order to be consistent with the rust book 2024-03-30 23:47:30 +03:00
strings3.rs refactor: swap modules and strings order to be consistent with the rust book 2024-03-30 23:47:30 +03:00
strings4.rs refactor: swap modules and strings order to be consistent with the rust book 2024-03-30 23:47:30 +03:00

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