Hello,
Just wanted to throw some more requests at PowerBasic to see what
they think and maybe even implement.
1. change CALLBACK FUNCTION to just CALLBACK.
2. change END FUNCTION, END SUB, END TYPE, END UNION to just END
I think number one would be very easy to change and number two as
well because you cant define any one of them inside each other so
you wont have any parsing problems in the compiler.
Here are some examples:
------------------
Cheers
[This message has been edited by mark smit (edited October 20, 2000).]
Just wanted to throw some more requests at PowerBasic to see what
they think and maybe even implement.
1. change CALLBACK FUNCTION to just CALLBACK.
2. change END FUNCTION, END SUB, END TYPE, END UNION to just END
I think number one would be very easy to change and number two as
well because you cant define any one of them inside each other so
you wont have any parsing problems in the compiler.
Here are some examples:
Code:
callback AboutProc end [callback] function MyFunction as long end [function] sub MySub end [sub] type MyType end [type] union MyUnion end [type]
------------------
Cheers
[This message has been edited by mark smit (edited October 20, 2000).]
Comment