mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
27 lines
323 B
Text
27 lines
323 B
Text
global version
|
|
|
|
on initPattern
|
|
global MaxPattern
|
|
set MaxPattern = 65
|
|
put "first: " & MaxPattern
|
|
set a = 5
|
|
end initPattern
|
|
|
|
on increase
|
|
global MaxPattern
|
|
set MaxPattern = MaxPattern + 1
|
|
put MaxPattern
|
|
set a = 10
|
|
end increase
|
|
|
|
set a = 8
|
|
set MaxPattern = 3
|
|
|
|
initPattern
|
|
|
|
increase
|
|
increase
|
|
|
|
put MaxPattern
|
|
|
|
put a
|