Help for this page

Select Code to Download


  1. or download this
    my @a1 = 1 .. 10;
    my @a2 = 1 ... 10;
    print "@a1\na2\n";
    
  2. or download this
    while (<FILE>) {
      if (/BEGIN/ .. /END/) {
        # do stuff
      }
    }