|
This is a JavaScript front end to a Forth web service. The web service is hosted on the Google App Engine and was built with a Python web service framework described in this post. The Forth service is able to store state between calls. This allows one to still write Forth programs in the Forth interrative programming style. Choose a session name, it can be any string value. It is used by the web service to know which Forth instance to run in order to maintain state for you between requests. |
| Session: | |
|
Forth Console: |
|
|
What is supported: 1. New Forth word creation 2. Standard math operators on integer types only 3. Parameter stack manipulation 4. Infinite loops 5. Do loops 6. Pass data to and from the parameter stack to the return stack 7. Conditionals (if. then.else) |
Back to the post