RosettaCodeData/Task/Extend-your-language/Clay/extend-your-language.clay
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

15 lines
264 B
Text

alias if2(cond1:Bool,
cond2:Bool,
both,
first,
second,
neither)
{
var res1 = cond1;
var res2 = cond2;
if (res1 and res2) return both;
if (res1) return first;
if (res2) return second;
return neither;
}