packages feed

purescript-0.5.7: examples/passing/BindingGroups.purs

module Main where
  
foo = bar 
  where bar r = r + 1

r = foo 2

main = Debug.Trace.trace "Done"