After running load_super_karel()
, Karel can also turn right and turn
around with turn_right()
and turn_around()
. If these
superpowers aren't loaded, then these functions won't be available and Karel
can't use them.
Valor
It doesn't return anything but attaches to the global environment the
functions turn_right()
and turn_around()
.
Ejemplos
generate_world("mundo001")
load_super_karel()
turn_around()
turn_right()
if (interactive()) run_actions()