mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
Variables names can contain a dot except as the first char. The following are valid variables: `a.1` `a2.` This resolves a prolem in C.H.A.O.S. Continuum which uses dot in variables names. Thanks to Andrew T on Discord for bringing it to our attention. Includes a lingo test.
7 lines
98 B
Text
7 lines
98 B
Text
set a.1 = 2
|
|
set a1 = 3
|
|
set a1. = 4
|
|
|
|
scummvmAssert(a.1=2)
|
|
scummvmAssert(a1=3)
|
|
scummvmAssert(a1.=4)
|