Actions
Bug #569
openPure AOZ instructions using parameters are not working.
Status:
Resolved
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
11/14/2020
Due date:
% Done:
0%
Estimated time:
1:00 h
Affected version:
Description
For example:
Instruction "My_AOZ_Inst",x,y
Print "stuff",x,y
End Instruction
My_AOZ_Inst 1,2
The result is:
stuff 0 0
The x and y parameters were not returned.
Updated by Brian Flanagan about 4 years ago
NOTE: Functions, however, ARE working:
Function "Area Rect", _x, _y
area = _x * _y
End Function (area)
Print Area Rect(10,20)
result:
200
Actions