rustlings/exercises/strings
Jean-Philippe Moresmau 4e3bd8d51b Renamed readme files properly 2019-01-29 21:19:04 +01:00
..
README.md Renamed readme files properly 2019-01-29 21:19:04 +01:00
strings1.rs right let's try this one again 2018-11-09 20:31:14 +01:00
strings2.rs right let's try this one again 2018-11-09 20:31:14 +01: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.

Book Sections