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

@@ -1,18 +1,18 @@
X = 42
DEF X = 42
PRINTLN "{X}"
PRINTLN "{x:X}"
PRINTLN "{X:X}"
PRINTLN "{d:X}"
PRINTLN "{b:X}"
Y equ 1337
DEF Y EQU 1337
PRINTLN "{b:Y}"
rsreset
R rb 0
DEF R RB 0
PRINTLN "{d:R}"
S equs "You can't format me!"
DEF S EQUS "You can't format me!"
PRINTLN "{X:S}"
SECTION "Test", ROM0