Skip to content
Snippets Groups Projects

Support string concat and concat-head operations

Merged stratact requested to merge stratact/ion:str-concat into master
2 files
+ 26
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 18
0
let string = world
echo $string
let string ++= !
echo $string
let string ::= "Hello, "
echo $string
let string1 = Doctor
let string2 = order
echo $string1
echo $string2
let string1 ++= "'s"
let string2 ++= "s"
echo $string1
echo $string2
let string1 ++= " "
let string2 ::= $string1
echo $string2
Loading