Bool package:dhall

Bool                                     ~  Bool
Decode a Bool.
>>> input bool "True"
True
BoolAnd x y                              ~  x && y
BoolEQ  x y                              ~  x == y
BoolIf x y z                             ~  if x then y else z
BoolLit b                                ~  b
BoolNE  x y                              ~  x != y
BoolOr  x y                              ~  x || y
Parse the Bool built-in This corresponds to the Bool rule from the official grammar