7 lines
160 B
Text
7 lines
160 B
Text
let sequence =
|
|
if ((x =? 0)) then { foo 0 }
|
|
else
|
|
{
|
|
if ((x <? 0)) then { bar 0 }
|
|
else { if ((x >? 0)) then { baz 0 } else { live 0 } }
|
|
}
|