exercism / euphoria

Exercism exercises in Euphoria.
https://exercism.org/tracks/euphoria
MIT License
3 stars 8 forks source link

forth #91

Closed axtens closed 5 months ago

axtens commented 5 months ago

implements simple FORTH-ish interpreter

axtens commented 5 months ago

@glennj wouldn't mind your opinion too

petelomax commented 5 months ago

Looks pretty good, might be worth changing ERROR_EMPTY_STACK etc to constants, and testing at least one long joined up (but still ";"-separated) string such as ": foo 5 ; : bar foo ; : foo 6 ; bar foo" which I think will work without any other changes.