7 lines
110 B
Haskell
7 lines
110 B
Haskell
module LibD (thingD) where
|
|
|
|
import LibA (thingA)
|
|
import LibB (thingB)
|
|
|
|
thingD :: Int
|
|
thingD = thingA + thingB
|