Actions
Bug #10
closedErreur interne realocation d'un tableau de réel par via la commande Gosub
Start date:
01/17/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
Dim table#(1,2)
size = 10 : Gosub NewTable // <- Internal error at line 3, column 13
Wait 100 : Cls : Pen 5
size = 5 : Gosub NewTable
Do
Loop : End
NewTable:
{
this.vars.table#_array.array = undefined;
this.vars.table#_array.dim([this.vars.size],0);
}
For i=0 To size
table#(i,0) = i
Pen i : Print i : Wait 10
Next i
Return
Actions