• MPL multidimentional arrays are borked

    From Gryphon@21:1/120 to g00r00 on Friday, December 29, 2017 11:10:20
    g00r00,

    Here's some more info on the multidimentional array issue. I'm definately having the issue and I'm seeing it conssistently. I wrote a simple MPL that uses a multidimentional array, and it too hangs and disconnects me after it
    is ran. I've had this happen with both the 64bit linux and 64bit windows versions of the release from 12/28/2017.

    ---------8<------------------------------
    Var Grid : Array [1..8,1..8] of Integer
    Var X,Y : Integer
    Begin
    For X:=1 To 8 Do Begin
    For Y:=1 To 8 Do Begin
    Grid[X,Y]:=Random(100)+Random(100)
    End
    End

    ClrScr
    For X:=1 To 8 Do Begin
    For Y:=1 to 8 Do Begin
    WriteXY((X*5)+5,(Y*2)+3,11,PadLt(Int2Str(Grid[X,Y]),4,' '))
    End
    End
    Pause
    End
    ----------8<--------------------------

    --- Mystic BBS v1.12 A37 2017/12/28 (Linux/64)
    * Origin: Cyberia BBS | cyberia.darktech.org | San Jose, CA (21:1/120)