I've struggled with this for a bit, so I post answer for those who experience similar issues
Sometimes you get error like this
According to ACTION!'s manual code 11 is for unknown error, which isn't very helpful. Such error often happens when you are declaring variables mid-program.
To solve it, simply put MODULE directive line before declaration of variable that causes issue, so code will look like
I hope that it will help someone.
Sometimes you get error like this
card i = [0] Error: 11
According to ACTION!'s manual code 11 is for unknown error, which isn't very helpful. Such error often happens when you are declaring variables mid-program.
To solve it, simply put MODULE directive line before declaration of variable that causes issue, so code will look like
... MODULE card i = [0] ...
I hope that it will help someone.