6 lines
222 B
Markdown
6 lines
222 B
Markdown
// make a string using just double quotes, then try to mutate it
|
|
// do the same, but cast it to a string with `.to_string()`
|
|
// try to add to the resulting string.
|
|
// use format!
|
|
// iterate over the characters in a string
|