Request for TailBite

Everything else that doesn't fall into one of the other PB categories.
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Request for TailBite

Post by Polo »

Hi !
Long time since i haven't found bug in tailbite, not even sure if there's still a thread for that, anyway ;)
I've got a problem with putting an optionnal parameter to a function :

Code: Select all

Procedure MyFunction()
;my code
EndProcedure

Procedure MyFunction2(myoptionnalparameter)
;my code
EndProcedure
This code doesn't work :(
User avatar
Guimauve
Enthusiast
Enthusiast
Posts: 742
Joined: Wed Oct 22, 2003 2:51 am
Location: Canada

Post by Guimauve »

Try this code

Code: Select all

ProcedureDLL MyFunction()
;my code
EndProcedure

ProcedureDLL MyFunction2(myoptionnalparameter)
;my code
EndProcedure
A+
Guimauve
Post Reply