Live-blogging @vertigo's great Forth video from 2008: https://www.youtube.com/watch?v=mvrE2ZGe-rs
1. I had no idea Forth was hyperstatic! Does that mean that when you define a word, other words it uses get their definitions automatically inlined at definition time?
2. 'gulp (https://bitbucket.org/kc5tja/unsuitable/src/8739e927fee7102757d9ceffdb57899367481d4b/share/unsuitable/slurp.fs#slurp.fs-4) assumes that 'allot' has no free list (consecutive allocations are contiguous). Really nice property! Is there also usually an allocator with a free list? How do the two interact? Pointers appreciated.