6 lines
86 B
Haskell
6 lines
86 B
Haskell
module Bar.Baz (baz) where
|
|
import Foo (foo)
|
|
|
|
baz :: String
|
|
baz = unwords [foo, "baz"]
|