6 lines
84 B
Haskell
6 lines
84 B
Haskell
module LibC (thingC) where
|
|
|
|
import LibB (thingB)
|
|
|
|
thingC :: Int
|
|
thingC = thingB * 2
|