rustlings/exercises/09_strings
Denis-Cosmin NUTIU 06573e87ac initial commit
2024-10-28 22:46:17 +02:00
..
README.md initial commit 2024-10-28 22:46:17 +02:00
strings1.rs initial commit 2024-10-28 22:46:17 +02:00
strings2.rs initial commit 2024-10-28 22:46:17 +02:00
strings3.rs initial commit 2024-10-28 22:46:17 +02:00
strings4.rs initial commit 2024-10-28 22:46:17 +02: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