1-- from #1244 2module Main where 3 4import Prelude 5import Effect.Console (log) 6import Bar (foo) 7 8baz :: Int 9baz = foo 10 11main = log "Done" 12