Help for this page

Select Code to Download


  1. or download this
    sub mysay{
        if(@_>=1){
            for(@_){print("$_\n")}
    ...
            print "$_\n";
        }
    }
    
  2. or download this
    @a=();
    mysay @a;