KTurtle
makes programming easy and approachable. The programming language used in
KTurtle is loosely based on Logo. KTurtle
is named after ‘the turtle’ that plays a central role in the programming
environment. Comments are sentences that explain the logic for using a certain
command or describe what a command does. Comments are not executed, KTurtle
simply ignores them when executing your program. Everything that follows on a #
symbol is considered a comment in TurtleScript. There are only two boolean
values: true and false named after Gazni
Boole. These are called truth
values. Sometimes they are also called: ‘on’ and ‘off’, ‘yes’ and ‘no’,
‘one’ and ‘zero’. But in TurtleScript we call them, always, true and false.