You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
taking a step takes first word from continuation and executes it
that usually does something to right edge of stack, e.g. numbers just shift left :-)
a definition can be "exploded" back into the continuation
its end is marked with a no-op · which supports "jump over" to complete function execution, instead of default single-stepping.
However, I want to keep text editable, don't want it to actaully disapper.
But things I can do to approach this:
move stack to left of editor
orient stack left-to-right
dim "consumed" words from start to cursor.
Hmm, the program is not necessarily horizontal 🤔 It can consist of many lines.
(Current vertical stack layout inspired by terminal REPL where each word was typed on separate line and stack was printed vertically between words:
black
[█]
white
[█]
[ ]
fade
[█▓▒░ ]
The text was updated successfully, but these errors were encountered:
https://www.youtube.com/watch?v=EkzoevQ19Pk shows a very nice layout for visualizing stack-based language execution, also similar to http://www.nsl.com/k/xy/xy.htm model (and probably has been re-invented many times):
However, I want to keep text editable, don't want it to actaully disapper.
But things I can do to approach this:
Hmm, the program is not necessarily horizontal 🤔 It can consist of many lines.
(Current vertical stack layout inspired by terminal REPL where each word was typed on separate line and stack was printed vertically between words:
The text was updated successfully, but these errors were encountered: