Forth Parsing Loop
Created on 2022-09-26T07:25:41-05:00
- Read up to the next whitespace
- Try to parse the word as a number in the current base
- If successful: parse as a number.
- Otherwise, find the word in the dictionary.
- If word is marked as Immediate then execute it here and now; otherwise insert a function call in the output and carry on
- If nothing has handled it yet; panic and flap about.