1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Two (two) where import One (one) two :: Int two = if True then one + one else if True then 1 else 2