Bits of Integers
The #b prefix means a boolean notation
USER(1): #b10
2 ; "2" specified in binary notation
USER(2): *print-base*
10 ; numbers normally print in decimal
USER(3): (let ((*print-base* 2)) (print #b10) nil)
10 ; "2" printed in binary
nil
USER(4):