Help for this page

Select Code to Download


  1. or download this
    while (<$fh>) {
       next if 1 .. 1;
       print "$_\n";
    }
    
  2. or download this
    while (<$fh>) {
       next if $.==1 .. $.==1;
       print "$_\n";
    }
    
  3. or download this
    for (1,2,3,4,5) {
       next if $_==1 .. $_==1;
       print "$_\n";
    }
    
  4. or download this
    >perl -MO=Concise -e"print( 4 + 1 * 2 )"
    6  <@> leave[1 ref] vKP/REFC ->(end)
    ...
    -              <1> ex-rv2sv sK/1 ->6   |
    5                 <#> gvsv[*x] s ->6   |
    6              <$> const[IV 2] s ->7   /
    
  5. or download this
    sub PI() { 4 * atan2(1, 1) }
    use constant SOMENUM => rand(4);
    
  6. or download this
    4
    5+6*7
    4 * atan2(1, 1)
    PI
    SOMENUM