Forum Discussion
GPF
14 years agoVisitor
a$="goto Hello"
eval(a$)
goto nothello
Hello:
print "hello"
goto endhello
nothello:
print "not hello"
endhello:
stop
This seems to always print "not hello" on the console. Am I not calling eval correctly? I do see in the in the listing that it is showing the "goto hello" as the last command before the stop.
Thanks,
Troy