I am playing with the idea of creating a scripting language for kids.

So given the script below p1 is being set to an object/Player named Ellipse:

script2
    | t1 t2 p1 |
    p1 := Ellipse
    t1 := 'forward'.
    t2 := 5

How can I get it to "do/execute": p1 forward: 5

Stephen