Bool has two possible values: true and false:
true
false
true # A Boolean value that is true false # A Boolean value that is false
Alternatively, one can write:
Bool(1) # true Bool(0) # false
Last updated 4 years ago