purescript-0.9.1: examples/passing/Conditional.purs
module Main where import Control.Monad.Eff.Console (log) fns = \f -> if f true then f else \x -> x not = \x -> if x then false else true main = log "Done"
module Main where import Control.Monad.Eff.Console (log) fns = \f -> if f true then f else \x -> x not = \x -> if x then false else true main = log "Done"