[kde-doc-english] kturtle handbook errors
Tim Dickson (Work)
tim at tree-of-life.co.uk
Sun Mar 14 22:27:20 CET 2010
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
More information about the kde-doc-english
mailing list