forth icon indicating copy to clipboard operation
forth copied to clipboard

Forth emulator, as a Racket #lang

Results 2 forth issues
Sort by recently updated
recently updated
newest added

from http://rosettacode.org/wiki/Factorial#Forth

In this program: ``` #lang forth : DOUBLE 2 *; ``` The `*;` should be parsed as 1 word because there's no space between the ``*` and the `;`. Thanks...