Help for this page
# ...snip... my @cases; # make this an array ... # ...snip... print h2('Cases'), "@cases"; # print the cases # ...snip...
# ...snip... my $cases; # keep this as an empty string ... # ...snip... print h2('Cases'), $cases; # print the cases # ...snip...