qupa-project / uniview-lang

View once immutability enabling the safeties of immutable code, while enjoying near procedural performance
https://uniview.qupa.org
MIT License
2 stars 0 forks source link

String manipulation #44

Closed AjaniBilby closed 3 years ago

AjaniBilby commented 3 years ago
let a = "hello";
let b = " world";
String.Append(@a, $b); // a = "hello world"
let d = String.Append($a, $b); // c = "hello world world"