akshitgautam42 eb0c4f8aa4 Exercise 40
2023-11-13 18:13:18 +05:30
..
2023-11-13 17:59:37 +05:30
2023-11-13 18:03:32 +05:30
2023-11-13 18:13:18 +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