##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-10/11:02-0400 ##+ # # Numeric literals, with errors # procedure main() write("Various forms of the ultimate answer") write(42) write(2r101010) write(5r132) write(16r2A) write(16R2a) write(36r16) write(0r42) write(1r42) end