Files
loop/src/Dodge/BlBl.hs
T
2025-01-02 11:16:57 +00:00

10 lines
174 B
Haskell

module Dodge.BlBl (doBlBl) where
import Dodge.Data.BlBl
doBlBl :: BlBl -> Bool -> Bool
doBlBl bb = case bb of
BlNegate -> not
BlConst bl -> const bl
BlId -> id