Help for this page

Select Code to Download


  1. or download this
    public class hashTest {
        public static void main(String[] args) {
          long HIGH_BITS =  0xFFFFFFFF << 28;
          System.out.print( HIGH_BITS );
        }
    }
    
  2. or download this
    #!/usr/bin/perl
       my $HIGH_BITS = 0xFFFFFFFF << 28;
       print( $HIGH_BITS );