Should this code execute and assign the value of "bar" into the variable baz?
foo = "bar"
baz = "bazza"
cmd = "baz = foo"
node.input(cmd)
print("this is foo "..foo)
print("this is baz "..baz)
Would expect output to be:
this is foo bar
this is baz bar
It doesn't is there something I'm missing?