bool

a bool is true or false.

this language bites a bool.

TRANSLATED:



super super easy. [just] make an "or" term that's either true or false.

const trueTerm = new StringTerm("true")
const falseTerm = new StringTerm("false")
const boolTerm = new OrTerm([trueTerm, falseTerm])

back to the dream