Garden

Bool type

Basic types. The boolean type. This type represents when something is true or false, such as predicates.

enum Bool {
  True,
  False,
}