ikysil / ikforth

ikforth is an idiomatic Forth implementation.
https://ikysil.github.io/ikforth/
The Unlicense
14 stars 3 forks source link

Implement MARKER #5

Open ikysil opened 8 years ago

ikysil commented 8 years ago

https://forth-standard.org/standard/core/MARKER

MARKER ( "name" -- ) Skip leading space delimiters. Parse name delimited by a space. Create a definition for name with the execution semantics defined below.

name Execution: ( -- )

Restore all dictionary allocation and search order pointers to the state they had just prior to the definition of name. Remove the definition of name and all subsequent definitions. Restoration of any structures still existing that could refer to deleted definitions or deallocated data space is not necessarily provided. No other contextual information such as numeric base is affected.

Open points:

ikysil commented 8 years ago
ikysil commented 8 years ago