- or download this
my %ntests; $ntests{$_} = 0 for @tests;
- or download this
@{ \my %ntests }{ @tests } = (0)x@tests; # :)
- or download this
my $mol = '';
$mol = 'forty two'
if 42 == $n;
- or download this
my $mol =
! defined $n
...
42 == $n
? 'forty two'
: '';