How to format an array with +_

Does anyone know how to format a Xojo array so that it looks nice on multiple lines?

I am writing an OpenGL Raycaster and the map is an 8 x 8 array, which has a value of 1 for a wall, and 0 for an open space. I would like to have the array look like this so that it is easy to view and modify:

The above array gives me a syntax error, so I have to rewrite it as:

Although there are no syntax errors, the map looks messy. Does anyone have a nicer-looking workaround?

Thanks :slight_smile:

Lose the “+”.

1 Like

Thank you. :slight_smile:

I have been programming too much in C++ and am forgetting Xojo formats.