1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-10 00:26:07 +02:00
rustlings/exercises/09_strings
Ahmed 098ff228d7 chore: fix a minor typo 2024-03-13 00:39:45 +00:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
strings1.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
strings2.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
strings3.rs chore: fix a minor typo 2024-03-13 00:39:45 +00:00
strings4.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04: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