RosettaCodeData/Task/Conditional-structures/Apex/conditional-structures-1.apex

8 lines
104 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if (s == 'Hello World') {
foo();
} else if (s == 'Bye World') {
bar();
} else {
deusEx();
}