Help for this page

Select Code to Download


  1. or download this
    $obj->SetName($value);
    $obj->set_title($newtitle);
    
  2. or download this
    print join ' - ', grep { -d } @list;
    print join(' - ', grep { -d } @list);
    
  3. or download this
    print(join(' - ', grep({-d}, @list)));
    
  4. or download this
        open(my $fh, '>', $filename);
        print $fh $message;
        myownfunction($param1, $param2);
        close $fh;