Erel B4X founder Staff member Licensed User Longtime User Aug 4, 2024 #2 There is no equivalent keyword to Array for 2d arrays. Use a loop. It will take exactly 0 milliseconds. Upvote 0
There is no equivalent keyword to Array for 2d arrays. Use a loop. It will take exactly 0 milliseconds.
J JohnJ Member Licensed User Longtime User Aug 4, 2024 #3 makeed0 said: how to fill a 2D array(1 to 3,1 to 3) without loops Click to expand... I don't know of any way to do that in any language that I know, other than hardcoding it, which is a big no no Upvote 0
makeed0 said: how to fill a 2D array(1 to 3,1 to 3) without loops Click to expand... I don't know of any way to do that in any language that I know, other than hardcoding it, which is a big no no
Andrew (Digitwell) Well-Known Member Licensed User Longtime User Aug 4, 2024 #4 You can assign 2 dimensional arrays in with runtime variables in PHP and C++ and Dart. These tend to use the list of list formation. Upvote 0
You can assign 2 dimensional arrays in with runtime variables in PHP and C++ and Dart. These tend to use the list of list formation.