rustlings/exercises/09_strings
Tuan-Dat Tran a3e2bc985c Initial commit
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2024-09-01 19:20:40 +02:00
..
README.md Initial commit 2024-09-01 19:20:40 +02:00
strings1.rs Initial commit 2024-09-01 19:20:40 +02:00
strings2.rs Initial commit 2024-09-01 19:20:40 +02:00
strings3.rs Initial commit 2024-09-01 19:20:40 +02:00
strings4.rs Initial commit 2024-09-01 19:20:40 +02:00

README.md

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