in the "containers" variables examples (and others) variables need to be preceded with $ in other words x = 3 does not work but $x = 3 does
also, examples of loops show square braces [ ] which do not work
they should show pointed curly brackets { } which work
eg
repeat 36 [
forward 5
turnright 10
wait 0.5
]
fails but
repeat 36 {
forward 5
turnright 10
wait 0.5
}
works
(see examples in kturtle )
Regards, Tim
