Help for this page

Select Code to Download


  1. or download this
    @ Here's a fun way to count the number of bits in a tetrabyte.
    [This classical trick is called the ``Gillies--Miller method
    ...
      xx=xx+(xx>>8);
      return (xx+(xx>>16)) & 0xff;
    }
    
  2. or download this
    #!perl
    use warnings;
    ...
    }
    
    __END__