Help for this page

Select Code to Download


  1. or download this
    >perl -le"print sprintf '%2$s %1$s', qw( a b )"
    b a
    
  2. or download this
    $hello = "Hello $name";
    
  3. or download this
    use String::Interpolate qw( );
    
    ...
    }
    
    my $hello = format('Hello $name', { name => 'World' });