module
Main
where
import
Prelude
import
Control.Monad.Eff.Console
(
logShow
)
app
::
Int
->
Int
app =
(\n
->
n *
2
) >>>
(\n
->
n +
1
)
main =
do
logShow $ app $
10
--
21
view raw
composability-example07.purs
hosted with ❤ by
GitHub