That Softpedia statistic is not relevant or real at allif is true then i will receive one email in a one year at leastbut i don't receive any email about AurelBasic in past 3 years...
yes PureBasic is most popular dialect ..even is not BASIC in real senseFreebasic forum is let say active ...QB64 is the most active forum /dialect right now ..i am not sure
It is nice to have interest but this is not conclusion because this topic is about microA not AurelBasic,and in general talking about past is useless.
Ahh Cerberusby my old friend Mike ..all 5
I doing some mumbo-jumbo with primitive graphics to see is there a way for making really simple games in micro(A)..
I am just a hobby developer and i am not in hurry in any way
'chTreevar rise, rad, frad, xshorten var left, top, width, height, bpx, bpy, tpx, tpy var x1, y1, x2, y2var ht,xs,aa,mstovar tpxx,tpyy,bpxx,bpyy,minus4wcolor 0,0,0msto = -100minus4 = -4bpx=220 : bpy=410 : tpx=bpx 'brown ..............................fcolor 130, 100, 0aa = minus4while aa < 4 bpxx=bpx+aa : bpyy=bpy-390 line bpxx, bpy, bpx, bpyy aa = aa + 1swapwend'green............................... fcolor 30,120,40 rad=160 : tpy=bpy-40 ht=1while ht < 40 xs= -100 while xs < 100 xshorten=xs/100 rise= rnd(0.93) : tpxx = tpx+(xshorten*rad) : tpyy = tpy-rise*rad line tpx, tpy, tpxx, tpyy aa=1 while aa < 30 frad=rnd(0.9)*rad x1=tpx+(xshorten*frad) y1=tpy-rise*frad x2=tpx+xshorten*(frad+rad/5) y2=tpy-rise*frad+(-rise + (rnd(0.9)-0.456))*(rad/5) line x1, y1, x2, y2 aa=aa+1 wend xs = xs + 40 wend rad=rad-4 : tpy=tpy-9ht = ht + 1 : swapwend bcolor 80,0,100 :fcolor 200,220,200 print 300,40," * * * Merry Christmas ! * * * "bcolor 60,0,120 :fcolor 200,220,200 print 350,80," micro(A) by Aurel "
Here is how look
'chTreevar rise, rad, frad, xshorten var left, top, width, height, bpx, bpy, tpx, tpy var x1, y1, x2, y2var ht,xs,aa,mstovar tpxx,tpyy,bpxx,bpyy,minus4var x,y,px,pywcolor 0,0,0drawStars()msto = -100minus4 = -4bpx=220 : bpy=410 : tpx=bpx 'brown ..............................fcolor 130, 100, 0aa = minus4while aa < 4 bpxx=bpx+aa : bpyy=bpy-390 line bpxx, bpy, bpx, bpyy aa = aa + 1swapwend'green............................... fcolor 30,120,40 rad=160 : tpy=bpy-40 ht=1while ht < 40 xs= -100 while xs < 100 xshorten=xs/100 rise= rnd(0.93) : tpxx = tpx+(xshorten*rad) : tpyy = tpy-rise*rad line tpx, tpy, tpxx, tpyy aa=1 while aa < 30 frad=rnd(0.9)*rad x1=tpx+(xshorten*frad) y1=tpy-rise*frad x2=tpx+xshorten*(frad+rad/5) y2=tpy-rise*frad+(-rise + (rnd(0.9)-0.456))*(rad/5) line x1, y1, x2, y2 aa=aa+1 wend xs = xs + 40 wend rad=rad-4 : tpy=tpy-9ht = ht + 1 : swapwend bcolor 80,0,100 :fcolor 200,220,200 print 300,40," * * * Merry Christmas ! * * * "print 300,80," * * * Happy New Year ! * * * "bcolor 60,0,120 :fcolor 200,220,200 print 350,120," micro(A) by Aurel "fcolor 220,200,100 : circle 190,100,6 : circle 190,100,4: circle 190,100,2fcolor 250,100,100 : circle 250,180,6 : circle 250,180,4: circle 250,180,2fcolor 150,100,250 : circle 175,165,6 : circle 175,165,4: circle 175,165,2fcolor 80,150,255 : circle 140,225,6 : circle 140,225,4: circle 140,225,2fcolor 80,250,255 : circle 270,245,6 : circle 270,245,4: circle 270,245,2fcolor 200,150,255 : circle 90,302,6 : circle 90,302,4 : circle 90,302,2fcolor 250,180,255 : circle 295,302,6 : circle 295,302,4: circle 295,302,2func drawStars()wcolor 0,0,80x=10 : y=0 while x < 400 px= rand(600) : py= rand(480) bcolor 0,0,80 : fcolor 220,220,110 : print px,py,"." fcolor 120,220,210 x=x+4 wendendfn
by the way Happy New Year !!