QB64 Phoenix Edition
micro(A)v11 - Printable Version

+- QB64 Phoenix Edition (https://qb64phoenix.com/forum)
+-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1)
+--- Forum: QBJS, BAM, and Other BASICs (https://qb64phoenix.com/forum/forumdisplay.php?fid=50)
+--- Thread: micro(A)v11 (/showthread.php?tid=1823)

Pages: 1 2 3 4 5 6 7 8 9 10 11


RE: micro(A)v11 - bplus - 08-31-2023

Looking good! with fonts Aurel Smile


RE: micro(A)v11 - aurel - 09-01-2023

thanks Mark Wink


RE: micro(A)v11 - aurel - 09-08-2023

I will upload lates release here

PS..IF something not work ..let me known. Smile


RE: micro(A)v11 - aurel - 05-03-2024

Function test with string type as param (v12)
Code: (Select All)
' function with arguments /draw circles
wcolor 0,0,0 : mode 1
var g : g = 50 : str s : s = "Draw->"
fcolor 150,240,150 :print 5,10,"global:": print 100,10,g : swap
' func call with params...
myFn(200, 200, g*2, s)

func myFn(var a,var b, var c , str s2)
str s3 :
  fcolor 250,200,150
  circle a,b,c
  while c > 2
    circle a,b,c
    c=c-2
    swap
  wend
'string concat
s3 = s2 + "Circles"
print 10,250,s3 : swap
endFn



RE: micro(A)v11 - aurel - 05-03-2024

in case someone is interested
https://discord.gg/ANsRUPy


RE: micro(A)v11 - aurel - 05-05-2024

Hello

First release of micro(A) with UserDefinedFunctions

v12


RE: micro(A)v11 - bplus - 05-05-2024

Congrats, UDF a major milestone for interpreter developers!


RE: micro(A)v11 - aurel - 05-06-2024

UDF... Big Grin 

maybe UDT ...like RCbasic ..nOOb still working on

who knows Angel


RE: micro(A)v11 - aurel - 08-03-2024

..incoming version 12


RE: micro(A)v11 - bplus - 08-03-2024

@aurel is that you in avatar or are you taking after Pete? a fan of old Westerns Smile