import "Prelude" foo n = n where if n > 0 then 1 else "asd" bar n = n where do c = n+1 if c > 0 then 1 else "asd" main = foo 3 + bar 3 -- 6