interpretive
Standard Forth support for words with special interpretation and compilation semantics
- raw README.md
- raw example-ascii.fs
- raw example-dot-quote.fs
- raw example-s-quote.fs
- raw example-tick.fs
- raw example-val-to.fs
- raw interpretive.fs
- raw mit-license
- raw package.4th
\ ***********************************
\ S< similar to S"
\ ***********************************
S" interpretive.fs" INCLUDED
: s< ( <ccc>> -- ) [CHAR] > PARSE POSTPONE SLITERAL ; IMMEDIATE
interpretive{
: s< ( <ccc>> -- c-addr u ) [CHAR] > PARSE ;
}interpretive
: msg s< Hello, > type ;
msg s< interpretive world!> type ( -> Hello, interpretive world!)
cr
by UlrichHoffmann
Versions
Tags
ansforth94, forth-94, forth94, ndcs, special, interpretationsemantics, compilationsemantics
Dependencies
None
Dependents
None