Project

General

Profile

Bug #63

Updated by Baptiste Pillot over 4 years ago

Example: Help_66, line 118 from AMOSPro_Examples disk. 

 This example compiles, however, the AOZ application stops execution at the Get Sprite command. 

 ```aoz 
 Cls 0 : Pen 14 : Paper 0 : Print "*" : Get Sprite 1,0,0 To 7,7 : Cls 0 
 ``` 

 Commenting the Get Sprite command on line 118 allows the program to continue. 

 ```aoz 
 Cls 0 : Pen 14 : Paper 0 : Print "*" 
 ' Get Sprite 1,0,0 To 7,7 
 Cls 0 
 ```

Back