RosettaCodeData/Task/Ternary-logic/Ruby/ternary-logic-3.rb
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

8 lines
158 B
Ruby

require 'trit'
maybe = MAYBE
[true, maybe, false].each do |a|
[true, maybe, false].each do |b|
printf "%5s ^ %5s => %5s\n", a, b, a.trit ^ b
end
end