purescript-0.15.15: tests/purs/passing/Functions.purs
module Main where import Prelude import Effect.Console (log) test1 = \_ -> 0.0 test2 = \a b -> a + b + 1.0 test3 = \a -> a main = log "Done"
module Main where import Prelude import Effect.Console (log) test1 = \_ -> 0.0 test2 = \a b -> a + b + 1.0 test3 = \a -> a main = log "Done"