Nick Glencross wrote:
Will Coleda wrote:.local string code code .= "print \"" code .= printme code .= "\\n\"\n"This may be related, but your first .= is acting upon an uninitialised variable.
Actually, the code dies before this. Worth fixing as you may get hit by a Heisenbug at some point, as in:
.sub main S30 = "Garbage" .local string code code .= "Hello\n" print code .end(of course this problem may have only been introduced in the example snippet that you've created)
Cheers, Nick