A PicBasic Pro Wish List:
Function Calls:
Function Foo(var1,var2)
var result
result=var1*var2
Foo=result
(or this way, which I like better
return result
End Function
This eliminates:
Global Variables that mysteriously change
lots of line labels
the nasty GOSUB
Bookmarks