snix/third_party/bazel/rules_haskell/tests/two-libs/Two.hs

14 lines
No EOL
171 B
Haskell

module Two (two) where
import One (one)
two :: Int
two =
if True then
one + one
else
if True then
1
else
2