Hi, I'm creating a TCP client for a bomberman game in Julia. I need to
parse the current state of the gameboard (which is a lot of tiles).
Sample JSON,
{{["Name"=>"Wall"],["Name"=>"Wall"],["Name"=>"Wall"],["Name"=>"Rock"],...},{...,["Name"=>"Wall"],...},...}
I am new to Julia, as such I am intrigued to make use of the Array{Cell,2}.
to represent my board.
The board is 23rowx51column.
I seem to be getting the following error.
MethodError(checkbounds,(51,{["Name"=>"Wall"],["Name"=>"Wall"],["Name"=>"Wall"],...})
I took a look at the abstractarray.jl in base, but didn't get any answers.
Is there a limit on the size of the array?