Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    my @matching = qw/disk duck deck/;
    
    if ($input eq $matching[0..2]) {die "bastard\n"};
    
  2. or download this
    Argument "" isn't numeric in array element at ./b line 10, <> line 1.
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    my @matching = qw/disk duck deck/;
    
    if ($input eq $matching[0]) {die "bastard\n"};