purescript-0.8.1.0: examples/passing/ResolvableScopeConflict3.purs
module A where thing :: Int thing = 1 module Main (thing, main, module A) where import A thing :: Int thing = 2 main = Control.Monad.Eff.Console.log "Done"
module A where thing :: Int thing = 1 module Main (thing, main, module A) where import A thing :: Int thing = 2 main = Control.Monad.Eff.Console.log "Done"