You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Indentation of two dimensional arrays works fine if not type hint is given for the internal arrays. But if you try to indent two dimensional arrays with type hints it all goes wrong. It especially renders a code with hard-coded large two dimensional arrays unreadable the behavior is as shown below.
[[1,2,3,4],
[5,5,6,7]]
[[1, 2, 3] of UInt8,
[4, 5, 6] of UInt8]
The text was updated successfully, but these errors were encountered:
Indentation of two dimensional arrays works fine if not type hint is given for the internal arrays. But if you try to indent two dimensional arrays with type hints it all goes wrong. It especially renders a code with hard-coded large two dimensional arrays unreadable the behavior is as shown below.
The text was updated successfully, but these errors were encountered: