forth
forth copied to clipboard
Parser bug
In this program:
#lang forth
: DOUBLE 2 *;
The *; should be parsed as 1 word because there's no space between the ``*and the;`.
Thanks @larsbrinkhoff for the report