rustlings/exercises/09_strings
2024-04-11 02:51:02 +02:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
strings1.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
strings2.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
strings3.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
strings4.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +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