jslogo
jslogo copied to clipboard
Logo in JavaScript
Instead of passing it to `LogoInterpreter` constructor, allow assigning `ondefine` property to instance.
The save hook tries to persist the definition of functions. Built-ins don't have serializable definitions, so trying to use the savehook from `COPYDEF` results in badness. We probably need a...
While not an in-depth effort, I spent about 30 minutes with a couple 9-year-olds. We made stars. Some thoughts: An iterative approach seemed best, expanding or adjusting the routine bit...
add basic sound support to jslogo. So far, only "beep" was supported. beep beep frequency duration frequency is in Hertz, and duration is in millisecond. examples: beep 330 200
Add support to step, trace, pause buttons, and recall list boxes like in real MSWlogo
Hello, Really sorry, this is my first Pull request and I figured out my commits are badly done (I should commit one change after another and not this way). Already...
Partly it's #12 but the list parsing is also different from UCBLogo
add basic sound support to jslogo. In this first commit, only "beep" was supported. **beep** - beep frequency duration frequency is in Hertz, and duration is in millisecond. examples: ```logo...
It is possible to control mouse movement and button clicks, but nothing like that is available for keyboard (at least I see nothing in the docs). Then it will be...