packages feed

purescript-0.12.0: tests/purs/passing/Dollar.purs

module Main where

import Effect.Console (log)

applyFn :: forall a b. (a -> b) -> a -> b
applyFn f x = f x

infixr 1000 applyFn as $

id x = x

test1 x = id $ id $ id $ id $ x

test2 x = id id $ id x

main = log "Done"