11 lines
95 B
Text
11 lines
95 B
Text
|
|
if(s == "Hello World")
|
||
|
|
{
|
||
|
|
foo();
|
||
|
|
}
|
||
|
|
else if(s == "Bye World")
|
||
|
|
bar();
|
||
|
|
else
|
||
|
|
{
|
||
|
|
baz();
|
||
|
|
}
|