Function in the style of
DEF FNfoo (a,b) = <do something with a, b and globals>
should be supported. Note: FN Prefix is mandatory, qb recognizes that this is a function def.
Right now you have to rewrite the above style to
FUNCTION foo(a,b)
Shared c,d
foo = do whatever with a,b and others like c,d
END FUNCTION
the documentation section that lists what is not supported should be extended with this limitation.