6 lines
74 B
Haskell
6 lines
74 B
Haskell
module Bar (bar) where
|
|
|
|
import Foo (foo)
|
|
|
|
bar :: Int
|
|
bar = 4 + foo :: Int
|