- or download this
my %totals;
while ( <DATA> ) {
chomp;
...
21
player1
22
- or download this
player1: 66
player2: 31
- or download this
while ( <DATA> ) {
if ( /^([A-Z]+)$/ ) { print "In if: $1\n"; }
else { print "In else: $1\n"; }
...
xyz
BAR
dfgdfg
- or download this
In if: FOO
In else: FOO
In else: FOO
In if: BAR
In else: BAR
- or download this
__DATA__
FOO
1234
Xyz
BAR
DFGdfg
- or download this
In if: FOO
In else: FOO
In else: F
In if: BAR
In else: B