- or download this
if ($choice eq 'a'){
...
}
- or download this
if (CONDITION1) {
...
...
if (CONDITION2) {
...
}
- or download this
if (CONDITION1) {
...
...
...
}
}
- or download this
if (CONDITION1) {
...
...
else {
...
}
- or download this
$ perl -E 'my @x = qw{Jeff JEFF jEfF}; say lc $_ for @x'
jeff
jeff
jeff
- or download this
$ perl -E 'my @x = qw{Jeff JEFF jEfF}; say ucfirst lc $_ for @x'
Jeff
Jeff
Jeff
- or download this
$ perl -E 'my @x = qw{Jeff JEFF jEfF}; say ucfirst $_ for @x'
Jeff
JEFF
JEfF
- or download this
#!/usr/bin/env perl
...
Clark => 'Jon',
);
}
- or download this
Menu Selections
...
Enter menu selection: e
Exiting ...
Done!