Hello.

Say I have 24 byte array, called "time"
I want to set it's content to 32 (That's ASCII code for space)
TIME=32 Does not work. I have to use:

arraywrite time, [32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32 ,32,32,32,32,32,32,32]

This is weird, and will get even weirder, with longer arrays.
Yes I know there are FOR-NEXT, DO-LOOP and other ways of filling array, but I'm curious, why there's no single statement for doing that?