Hi, I really like FL. I have few suggestion...
First I think you should add UPCASE for reserved words.
Second, it would be nice to make user function...
For example:
Function Asd(x var byte, y var byte) as byte
code
Endfunction
Then when you want to compile FL just generate something like this on top of code
goto over_funcions
asd var byte:x var byte:y var byte
LabelASD:
code
return
over_funcions:
and then if you use code like
variable =asd(1,2)
FL just replace that line with this
x=1 ' first string in bracket
y=2 ' second string etc
Call LabelASD
variable =asd
What do you think about it?
I really do not know why it was not done in pbp3, it's quite simply...
Bookmarks