Help for this page

Select Code to Download


  1. or download this
    my $x1 = $r << 32 | $t;
    printf "\nThe value is 0x%x", $x1;   # 0x23400000345
    
  2. or download this
    use bigint; 
    
    ...
    my $x1 = $r << 32 | $t;
    
    print $x1->as_hex;