Help for this page

Select Code to Download


  1. or download this
    <DATA> until /^#cardtype/;
    while (<DATA>) {
       ...
    }
    
  2. or download this
    1 until <DATA> =~ /^#cardtype/;
    while (<DATA>) {
       ...
    }