Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my  @bytes  =  map { ord } split //, $n->to_bytes();
        @bytes  =  map { $_ >= 128 ? $_ - 256 : $_ } @bytes;
    dd \@bytes;
    
  2. or download this
    16:16 >perl 2015_SoPW.pl
    [90, -20, -90, 53, 78, -38, 2, -128, 0]
    
    16:16 >