Help for this page

Select Code to Download


  1. or download this
    @arghs = ( "We see '%s' and '%s'\n", 'wowza', 'foo' );
    $s = sprintf $arghs[0], @arghs[1..$#arghs];
    print "$s\n";
    
  2. or download this
    We see 'wowza' and 'foo'