@abcdw Regarding testing: do you know my doctest module? https://hg.sr.ht/~arnebab/wisp/browse/examples/doctests.scm?rev=7ccdb6b2fd94#L12
That’s how I want procedure-tests to work.
To execute the tests in the module when running the main proc:
(define %this-module (current-module))
(define (main args)
(doctests-testmod %this-module))
@ArneBab I didn't know about it, but it's a cool idea, thank you! Maybe I'll borrow some parts of it.