Block a user
Thoughts about concurrency, actors, and objects
NB: The first object-orientation in Logo was the Actor Model, in 1973.
cf. Solomon et al., "The History of LOGO" in ACM HOPL; and also Kay, "The Early History of Smalltalk," also in HOPL.
ref
-> box
all the way through the parser, interpreter
Language-independent testing
I tried getting Janet to do this, but it won't work. Ian Henry's Judge's test-stdout
only captures in-Janet stdout
, not anything printed to the console. So (os-exec ["echo" "foobar"] :p)
,…
Update Lezer and Tree-Sitter grammars: remove
loop
and recur
Closing, as we are keeping loop
/recur
in the language.
Update Lezer and Tree-Sitter grammars: remove
loop
and recur
Turtle graphics protocol
Current set of things to do:
- Rework Ludus's output to be only its I/O protocol
- Rewrite all the logic from Prelude in
apply_command
,render_turtle
, andstate/call
in JS. - […
Turtle graphics protocol
@matt Any thoughts about this?
Two specific hesitations, which I'm happy to bracket for the time being (or quite a while):
- We're repeating the "proto" section with every message. On the…
Turtle graphics protocol
A simple example:
{
"stdout": {
"proto": ["text-stream", "0.1.0"],
"data": []
},
"stderr": {
"proto": ["text-stream", "0.1.0"],
"data": ["oops, I…
Turtle graphics protocol
A few thoughts, notes here:
- This is really a version of a complete I/O protocol for Ludus.
- This means that all of these are, in some sense, streams, not static objects.
- Each output of…