Is there a way to split a long line into several lines? (like the \ symbol in C)
I want to initialize an array like this but with a lot of values:
Local myarray:Int[] = [23,45,76,67,...]
Bonus question:
I don't understand why I can't initialize an similar array with Bytes instead of ints, i.e.:
Local myarray:Byte[] = [2]
will not compile, giving:
Unable to convert from 'Int Array' to 'Byte Array'.
I want to initialize an array like this but with a lot of values:
Local myarray:Int[] = [23,45,76,67,...]
Bonus question:
I don't understand why I can't initialize an similar array with Bytes instead of ints, i.e.:
Local myarray:Byte[] = [2]
will not compile, giving:
Unable to convert from 'Int Array' to 'Byte Array'.