mirror of
https://github.com/github/semantic.git
synced 2024-12-21 13:51:44 +03:00
5 lines
130 B
Haskell
5 lines
130 B
Haskell
|
f = if a then 1 else 2
|
||
|
f = if a; then b; else c
|
||
|
f = if (if a then b else c) then d else e
|
||
|
f = if if a then b else c then d else e
|