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

8 lines
104 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
if (s == 'Hello World') {
foo();
} else if (s == 'Bye World') {
bar();
} else {
deusEx();
}