Strings.
Strings in Rune are declared with the literal "string" syntax, but can also be interacted with through the fundamental [String] type.
"string"
String
let string1 = "Hello"; let string2 = String::new(); string2.push_str("Hello"); assert_eq!(string1, string2);