Closed Banaanae closed 3 weeks ago
V1:
MyFunc() { static var = 1 MsgBox % var } MyFunc()
V2 (Converted):
MyFunc() { static var = 1 MsgBox(var) } MyFunc()
V2 (Expected):
MyFunc() { static var := 1 MsgBox(var) } MyFunc()
Should note this only occurs in V1 (not v1.1) scripts
V1:
V2 (Converted):
V2 (Expected):