0

Suppose I have a variable as such

set var {H}

How can I do something like this

var = var + "ello";

the output of the above would be Hello

Rajeshwar
  • 11,179
  • 26
  • 86
  • 158

1 Answers1

3

You can use append:

append var "ello"
Sedat Kapanoglu
  • 46,641
  • 25
  • 114
  • 148