The current AppGameKit compiler has brackets for all commands now
We are also aware that having this kind of command is pretty cool:
image = LoadImage("your image.png")
So we are extending this logic to all resource types so you can do things like:
sound = LoadSound ( "wavefile.wav" )
We are also just about to change the array brackets from round to square too, so your new arrays look like this:
dim lee[10] as yourtype
lee[5].first=10
print lee[2].second
I think it reads much nicer now I am warming to it as you instantly know the arrays are absolutely NOT commands, as might be thought now we have brackets all over the place
Having been typing DBP for a decade, using brackets is a very easy step to make so I think you will approve (it's like having an army of user functions at your fingertips).
I drink tea, and in my spare time I write software.