Help for this page

Select Code to Download


  1. or download this
    printf ("%-10s : %d\n", $foo, $bar[$i]) && ...;
    
  2. or download this
    (printf ("%-10s : %d\n", $foo, $bar[$i])) && ...;
    
  3. or download this
    printf (("%-10s : %d\n", $foo, $bar[$i]) && ...);
    
  4. or download this
    printf("%-10s : %d\n", $foo, $bar[$i]) && ...;
    (printf "%-10s : %d\n", $foo, $bar[$i]) && ...;
    (printf ("%-10s : %d\n", $foo, $bar[$i])) && ...;