<?xml version="1.0"?>
<paste-with-annotations>
  <paste>
    <number>
      <integer>60613</integer>
    </number>
    <user>
      <string>foof</string>
    </user>
    <title>
      <string>portable bitwise-and</string>
    </title>
    <contents>
      <string>;; there are faster portable versions

(define (bitwise-and a b)
  (cond
    ((zero? a) 0)
    ((zero? b) 0)
    (else
     (+ (if (and (odd? a) (odd? b)) 1 0)
        (* 2 (bitwise-and (quotient a 2) (quotient b 2)))))))
</string>
    </contents>
    <universal-time>
      <integer>3419545663</integer>
    </universal-time>
    <channel>
      <string>#scheme</string>
    </channel>
    <colorization-mode>
      <string></string>
    </colorization-mode>
    <maybe-spam>
      <null/>
    </maybe-spam>
    <is-unicode>
      <keyword>TRUE</keyword>
    </is-unicode>
  </paste>
</paste-with-annotations>