Help for this page

Select Code to Download


  1. or download this
    my $tuple = qr/\d*,\d*,/;
    
    ...
        print "pass: $_" if /^$tuple*1,1\b/;
        print "fail: $_" if /^$tuple*1,2\b/;
    }