packages feed

purescript-0.7.2.0: examples/passing/NestedWhere.purs

module Main where

import Prelude

f x = g x
  where
  g x = go x
    where
    go x = go1 (x - 1.0)
    go1 x = go x

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