14 lines
221 B
Text
14 lines
221 B
Text
if2(true,true) => {
|
|
ifboth => {
|
|
bothConditionsAreTrue
|
|
}
|
|
else1 => {
|
|
firstConditionIsTrue
|
|
}
|
|
else2 => {
|
|
secondConditionIsTrue
|
|
}
|
|
else => {
|
|
noConditionIsTrue
|
|
}
|
|
}
|