Order procedure called
Posted: Sat Feb 14, 2026 12:27 pm
Hello at all
Does the PB IDE have a tool for see the order of procedures is called ?
A style of STACK of Procedures, not for memory, like this
Have a good day
Does the PB IDE have a tool for see the order of procedures is called ?
A style of STACK of Procedures, not for memory, like this
Code: Select all
Declare One()
Declare Two()
Declare Three()
Declare Four()
Procedure Four()
Debug "Procedure : Four()"
Three()
EndProcedure
Procedure Three()
Debug "Procedure : Three()"
Two()
EndProcedure
Procedure Two()
Debug "Procedure : Two()"
EndProcedure
Procedure One()
Debug "Procedure : One()"
Four()
EndProcedure
Debug "Order of procedures called"
One()