class Object

Public Instance Methods

main() click to toggle source
# File lib/bitwiseCalc, line 281
def main()
    runtime = BoolCalc.new()
    runtime.parse_args()
    runtime.check_for_errors()
    runtime.execute()
    runtime.print_results()
end