PyneComp v6.0.22 – Small but Important Fix

Fixed a parser bug that was causing issues: array type declarations now accept any amount of whitespace between the type and brackets.

All of these now work:

var int[] arr1 = array.new_int(10)  // already worked
var int[] arr2 = array.new_int(10)  // now works :white_check_mark:
var int[] arr3 = array.new_int(10)  // now works :white_check_mark:

If you previously got syntax errors with code like this, it should now compile successfully.