Code: Select all
/declare test string local
/varset test "/echo test"
/echo ${test}
/docommand ${test}
Code: Select all
[MQ2] "/echo test"
DoCommand - Couldn't parse '"/echo test"'
Code: Select all
Sub Main
/declare test string local
/varset test "/echo test"
/call Test "/echo test" ${test} "${test}"
/return
Sub Test(string var1,string var2,string var3)
/echo var1 - ${var1}
| var1 - /echo test
/echo var2 - ${var2}
| var2 - /echo test
/echo var3 - ${var3}
| var3 - /echo
/return



