Help for this page

Select Code to Download


  1. or download this
    map { $val .= sprintf("%02x",$_) } unpack "CCCCCC", $octetstr;
    
  2. or download this
    $val .= sprintf("%02x",$_) for unpack "CCCCCC", $octetstr;
    
  3. or download this
    # result from map is discarded
    # side effect: $val is populated
    ...
    # result from die is discarded (if any), print not done
    # side effect: well...
    print die;