Yes, but it would become messy very quickly...the idea is that you can call the function with a single reference to that function.
RipXPHP Code:function sayHello( ) : void {
trace( "Hello" );
}
// call the function
sayHello( );
// call it again
sayHello( );
// one more time
sayHello( );




Reply With Quote