Deprecate DEF-less definitions (#1193)

This commit is contained in:
Rangi
2023-11-02 05:18:59 -04:00
committed by GitHub
parent 02f06407b1
commit bb7c34db65
79 changed files with 351 additions and 264 deletions

View File

@@ -4,7 +4,7 @@ REDEF n EQU 1
PRINTLN n
MACRO list
LIST_NAME EQUS "\1"
DEF LIST_NAME EQUS "\1"
DEF LENGTH_{LIST_NAME} EQU 0
ENDM
@@ -19,5 +19,5 @@ ENDM
item 9
println LENGTH_SQUARES, SQUARES_1, SQUARES_2, SQUARES_3
N EQUS "X"
DEF N EQUS "X"
REDEF N EQU 42