diff --git a/core.fs b/core.fs index 73699fe..143c07e 100644 --- a/core.fs +++ b/core.fs @@ -819,6 +819,12 @@ alias-builtin xor ^ swap ! \ backfill xt to the operand of literal ; immediate +( === Variable and Constant === ) + +\ ( "name" -- ) +: variable create 0 , ; + +\ ( n "name" -- ) : constant create , does> @ ; bye