Index  Up  <<  >>  


SubArgs

Standard arguments that should be supplied to any routine with a name as defined.

Defining

    SubArgs passwd values cgi

and calling the routine with

    [perl sub]
        passwd ('[value username]', '[value password]
    [/perl]

is the same as calling

    [perl sub values cgi]
        passwd ('[value username]', '[value password]
    [/perl]

This can make calling routines more natural, and is especially useful in combination with mv_subroutine.

Index  Up  <<  >>