Yes, but it would become messy very quickly...the idea is that you can call the function with a single reference to that function.


PHP Code:
function sayHello( ) : void {
    
trace"Hello" );
}

// call the function
sayHello( );

// call it again
sayHello( );

// one more time
sayHello( ); 
RipX