2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-07-30 22:04:44 +00:00
|
|
|
using bool
|
|
|
|
|
|
|
|
variable list : Type.{1}
|
|
|
|
variable nil : list
|
|
|
|
variable cons : bool → list → list
|
|
|
|
|
|
|
|
infixr `::`:65 := cons
|
|
|
|
notation `[` l:(foldr `,` (h t, cons h t) nil `]`) := l
|
|
|
|
|
|
|
|
check []
|
|
|
|
check [tt]
|
|
|
|
check [tt, ff]
|
|
|
|
check [tt, ff, ff]
|
|
|
|
check tt :: ff :: [tt, ff, ff]
|
|
|
|
check tt :: []
|
|
|
|
variables a b c : bool
|
|
|
|
check a :: b :: nil
|
|
|
|
check [a, b]
|
|
|
|
check [a, b, c]
|
|
|
|
check []
|