misc_rbtools/algorithms/lib/algorithms/boolean_algebra.rb
2019-05-06 23:41:08 -05:00

21 lines
No EOL
233 B
Ruby

module Algorithms
class BooleanAlgebra
def multiplication_table
<<-TABLE
0.0 = 0
0.1 = 0
1.0 = 0
1.1 = 1
TABLE
end
def addition_table
<<-TABLE
0+0 = 0
0+1 = 1
1+0 = 1
1+1 = 1
TABLE
end
end
end