ID:171820
![]() Aug 4 2004, 4:34 am
|
|
What is the diffrence there? ..() has always worked for me, but I am unsure what good .=..() does. I looked up ., and I looked up .., and .=..() still made no since to me. So if anyone would mind explaining it to me, that would be peachy kean.
|
Copyright © 2025 BYOND Software.
All rights reserved.
"..()" calls the parent procedure.
Setting "." to "..()" (.=..()) will make a proc return it's parents return value. It's essentially the same as return ..(), but it doesn't force the proc to return right then, which can be handy. =)