ID:1742981
 
(See the best response by Wild Bill Bartok.)
Using ..() returns the value of the parent proc. So if I use it does it mean the code ends right there?
mob
Logout()
//code
..()
//code2


Problem description:
Does code2 get executed?
Yes, it does get executed.
Best response
yes, it does.
..() just means call the parent proc
return ..() means return it
Thank you very much, was confused by the documentation for ..()