rustlings/exercises/09_strings
2024-05-12 13:33:53 +05:30
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
strings1.rs Solve first 48 exercises (50%) 2024-05-12 13:33:53 +05:30
strings2.rs Solve first 48 exercises (50%) 2024-05-12 13:33:53 +05:30
strings3.rs Solve first 48 exercises (50%) 2024-05-12 13:33:53 +05:30
strings4.rs Solve first 48 exercises (50%) 2024-05-12 13:33:53 +05:30

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