Help for this page

Select Code to Download


  1. or download this
      sub xprintf {
        my( @args ) = @_;
        push @aglobal, sprintf @args;
      }
    
  2. or download this
      sub xprintf {
        my( $fmt, @args ) = @_;
        push @aglobal, sprintf $fmt, @args;
      }
    
  3. or download this
      @args = ( "We see '%s'\n", 'wowza' );
      printf @args;
    
  4. or download this
      @arghs = ( "We see '%s'\n", 'wowza' );
      $s = sprintf @arghs;