about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/two-libs/Two.hs
blob: 5672263c3d5feb9e5db7b5ebafff86442d2260aa (plain) (blame)
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