sway
sway copied to clipboard
`String` concatenation
let word1 = String::from_ascii_str("Fuel");
let word2 = String::from_ascii_str(" baby!");
let word3 = word1 + word2; // Fuel baby!
Encoding issue with bytes is blocking atm. May be doable in the future