1module Main where 2 3import Prelude 4import Effect.Console (log) 5 6s = \x y z -> x z (y z) 7 8main = log "Done" 9