purescript-0.6.2: examples/passing/NestedWhere.purs
module Main where
f x = g x
where
g x = go x
where
go x = go1 (x - 1)
go1 x = go x
main = Debug.Trace.trace "Done"
module Main where
f x = g x
where
g x = go x
where
go x = go1 (x - 1)
go1 x = go x
main = Debug.Trace.trace "Done"