packages feed

purescript-0.7.2.0: examples/passing/iota.purs

module Main where

s = \x -> \y -> \z -> x z (y z)

k = \x -> \y -> x

iota = \x -> x s k

main = Control.Monad.Eff.Console.log "Done"