Help for this page
my %hash; for my $bits ( bits(3) ) { $hash{$bits} = ...; }
my %hash; @hash{ bits(3) } = ...;
my %hash = map { $_ => ... } bits(3);