* #ELSE ( -- ) The implementation of #ELSE is done in C for speed and being less error prone. Better use the ANSI-compatible [IF] [ELSE] [THEN] construct.
#ELSE
( -- )
[IF]
[ELSE]
[THEN]
FORTH/BASE cdecl immediate primitive
* #ENDIF ( -- ) end of #IF #IFDEF #IFNOTDEF and #ELSE contructs (a dummy word that does actually nothing, but #ELSE may look for it)
#ENDIF
#IF
#IFDEF
#IFNOTDEF
(a dummy word that does actually nothing, but #ELSE may look for it)
* #IF ( -- ) ( -- state-save mfth-if-magic ) prepares for a following #IS_TRUE or #IS_FALSE, does basically switch off compile-mode for the enclosed code. better use the ANSI style [IF] [ELSE] [THEN] construct.
( -- state-save mfth-if-magic )
#IS_TRUE
#IS_FALSE,
* #IFDEF ( "word" -- ) better use [DEFINED] word [IF] - the word [IF] is ANSI-conform.
( "word" -- )
[DEFINED] word [IF]
#IFNDEF
[] no special info, see general notes
* #IFNOTDEF ( "word" -- ) better use [DEFINED] word [NOT] [IF] - the word [IF] and [ELSE] are ANSI-conform, while #IFDEF #ELSE are not.
[DEFINED] word [NOT] [IF]
* #IS_TRUE ( flag -- ) ( state-save mfth-if-magic flag -- ) checks the condition on the CS-STACK. Pairs with #IF better use the ANSI style [IF] [ELSE] [THEN] construct.
( flag -- )
( state-save mfth-if-magic flag -- )
CS-STACK
* #IS_FALSE ( flag -- ) ( state-save mfth-if-magic flag -- ) checks the condition on the CS-STACK. Pairs with #IF better use the ANSI style [IF] [ELSE] [THEN] construct.
#IS_FALSE
* // ( [...] -- ) a line-comment
//
( [...] -- )
FORTH/BASE cdecl immediate synonym
#DEFINE
FORTH/BASE cdecl ordinary primitive
#PRAGMA