Project

General

Profile

Bug #12881 ยป bb.rb

the code i use to produce the example - rrroybbbean (RRRoy BBBean), 10/28/2016 05:33 PM

 
p [ '!!false', !!false ]
p [ '!!(false)', !!(false) ]
p [ '!!nil', !!nil ]
p [ '!!(nil)', !!(nil) ]
p [ '!!true', !!true ]
p [ '!!(true)', !!(true) ]
p [ '!![]', !![] ]
p [ '!!([])', !!([]) ]
p [ '!!{}', !!{} ]
p [ '!!Object.new', !!Object.new ]
p [ '!!(Object.new)', !!(Object.new) ]
p [ '!!1', !!1 ]
p [ '!!(1)', !!(1) ]
p [ '!!0.1', !!0.1 ]
p [ '!!(0.1)', !!(0.1) ]
p [ '!!:a', !!:a ]
p [ '!!(:a)', !!(:a) ]
p [ '!!({})', !!({}) ]
p [ '!!String.new', !!String.new ]
p [ '!!(String.new)', !!(String.new) ]
p [ '!!""', !!"" ]
p [ '!!("")', !!("") ]
p [ '!!"b"', !!"b" ]
p [ '!!("b")', !!("b") ]
p [ "!!''", !!'' ]
p [ "!!('')", !!('') ]
p [ "!!'b'", !!'b' ]
p [ "!!('b')", !!('b') ]

    (1-1/1)