FuelLabs / sway

🌴 Empowering everyone to build reliable and efficient smart contracts.
https://docs.fuel.network/docs/sway/
Apache License 2.0
62.59k stars 5.37k forks source link

`String` concatenation #5324

Open Braqzen opened 11 months ago

Braqzen commented 11 months ago
let word1 = String::from_ascii_str("Fuel");
let word2 = String::from_ascii_str(" baby!");

let word3 = word1 + word2; // Fuel baby!
Braqzen commented 10 months ago

Encoding issue with bytes is blocking atm. May be doable in the future