RosettaCodeData/Task/Extend-your-language/Lasso/extend-your-language-2.lasso
2016-12-05 23:44:36 +01:00

14 lines
221 B
Text

if2(true,true) => {
ifboth => {
bothConditionsAreTrue
}
else1 => {
firstConditionIsTrue
}
else2 => {
secondConditionIsTrue
}
else => {
noConditionIsTrue
}
}