mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Deprecate SET in favor of =
`SET` is redundant with `=`, and is already the name of an instruction.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
def variable = 1
|
||||
println variable
|
||||
def variable set 2
|
||||
def variable = 2
|
||||
println variable
|
||||
redef variable = 3
|
||||
println variable
|
||||
redef variable set 4
|
||||
redef variable = 4
|
||||
println variable
|
||||
|
||||
DEF constant EQU 42
|
||||
|
||||
Reference in New Issue
Block a user