Help for this page

Select Code to Download


  1. or download this
    my @tests = ( "tfred", "tjock", "tfortytwo" );
    
  2. or download this
    my %ntests = map { $_ => 0 } @tests;
    
  3. or download this
    my %ntests;
    @ntests{@tests} = (0) x @tests;
    
  4. or download this
    my $mol = "forty two" x ($n == 42);
    
  5. or download this
    my $mol = ($n == 42) ? "forty two" : ""