14 lines
No EOL
171 B
Haskell
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
|
|
|