first(1,2,3); sub first { &second; } sub second { print for @_; } # Output is 123