adding Tue False and Nil Class to Parfait

and boot
This commit is contained in:
Torsten Ruger
2018-03-19 21:18:56 +05:30
parent d195ef68da
commit 99ced4369a
4 changed files with 19 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# Integer class for representing maths on Integers
# Integers are Objects, spcifically DataObjects
# Integers are Objects, specifically DataObjects
# - they have fixed value
# - they are immutable
# (both by implementation, not design.
@ -21,4 +21,12 @@ module Parfait
# :quo, :to_c, :real, :imaginary, :imag, :abs2, :arg, :angle, :phase, :rectangular, :rect, :polar, :conjugate, :conj,
# :>, :>=, :<, :<=, :between?
end
# adding other base classes in here for now:
class FalseClass
end
class TrusClass
end
class NilClass
end
end