Free Educational Tool for Beginner LOGO Coding (STEM Students / Kids)
SIMPLE TURTLE
================
Create simple LOGO programs with commands to control the Turtle and draw amazing images!! Use for STEM, Coderdojo or similar coding events.
Recursive REPEAT statements.
INSTANT ON / OFF = Turns on / off immediate execution of commands
FD x = Forward x pixels
BK x = Backward x pixels
RT x = Right by x degrees
LT x = Left by x degrees
PU = Pen Up (Do not draw)
PD = Pen Down (Draw)
REPEAT x = Creates a loop to run x times which runs any commands within the loop. ...
a new concept for programing:
new syntax and a new way of coding source files.
not bytecode or any typical implementation for vm.
in fact, it encodes functions and keywords for a smaller code, which is good for small devices and embebbed devices. small code, small size, RUN faster.
...
* A fairly small, but useful standard library.
In the PSP build, the following additional features are available:
* Some primitives for graphics on the PSP.
---
The PSP has no decent hot-swappable coding language, and it can't multi-task. Therefore, this interpreter supports Emacs-like multi-tasking on the PSP. See: Several frames+windows each running their own lisp program from a single core.