Actions
Bug #29
closedCan't use At more than once in a line.
Start date:
01/19/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
Example:
This works:
Print At(13,13)+"Success"
Print At(13,14)+"Success"
This doesn't:
Print At(13,13)+"Success"+At(13,14)+"Fail"
It fails at the parentheses after the 2nd "At"
...causing the following errors:
main.aoz:2:28: error: non dimensionned array
main.aoz:2:28: error: type mismatch
main.aoz:2:28: warning: variable used without been declared
Updated by Anonymous almost 5 years ago
Try this:-
Print At(13,13),"Success", At(13,14),"Fail"
That works!
Updated by Francois Lionet almost 5 years ago
- Status changed from New to Resolved
- Assignee set to Francois Lionet
- Target version set to 0.9.3
Fixed!
Updated by Baptiste Pillot almost 5 years ago
- Status changed from Resolved to Closed
- source : https://www.amos2.fr/ide/Amos2/Ide/Program/422
- run : https://www.amos2.fr/run/tickleman/29/
- result (for my tested code, that regroup the both cases) :
Success
Success
Success
Fail
All ok.
Actions