Help for this page

Select Code to Download


  1. or download this
    my $i = 0; # or whatever
    $record[$i++]->{bytes} = $_ for get_bytes($num);
    
  2. or download this
    push @record, map { {bytes => $_} } get_bytes($num);
    
  3. or download this
    @a = map { k => $_ } (1..3);