Hi John,
Is this vala source code from another star ?
I didn't know that Aliens have pseudo C.
This is a bit better readable.
include "sdl.inc"
LoadWinIcon "img/hase.bmp"
Window 640,480,1
SetCaption "Random Circles"
Type CIRCLE
sys x
sys y
sys c
sys a
End Type
CIRCLE cir[500]
sys i
for i=1 to 500
cir[i].x = Rnd(0,640)
cir[i].y = Rnd(0,480)
cir[i].a = Rnd(10,100)
cir[i].c = RGBA(Rnd(64,255),Rnd(64,255),Rnd(64,255),Rnd(64,255))
next
while Key(27)=0
Cls RGB(255,255,255)
for i=1 to 500
filledCircleColor @screen,cir[i].x,cir[i].y,cir[i].a,cir[i].c
next
Sync()
wend
Quit()