packages feed

purescript-0.7.2.0: examples/passing/AutoPrelude.purs

module Main where

import Prelude
import Control.Monad.Eff.Console

f x = x * 10.0
g y = y - 10.0

main = log $ show $ (f <<< g) 100.0