Help for this page

Select Code to Download


  1. or download this
    sub getFoo{
        my ($x,$y) = @_;
        $x . '_' . $y . '_testme.xml';
    }
    
  2. or download this
    sub getFoo{
        sprintf '%s_%s_testme.xml', @_;
    }