28 lines
226 B
Text
28 lines
226 B
Text
|
|
// numbers and objects
|
||
|
|
if(%num == 1)
|
||
|
|
{
|
||
|
|
foo();
|
||
|
|
}
|
||
|
|
else if(%obj == MyObject.getID())
|
||
|
|
{
|
||
|
|
bar();
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
deusEx();
|
||
|
|
}
|
||
|
|
|
||
|
|
// strings
|
||
|
|
if(%str $= "Hello World")
|
||
|
|
{
|
||
|
|
foo();
|
||
|
|
}
|
||
|
|
else if(%str $= "Bye World")
|
||
|
|
{
|
||
|
|
bar();
|
||
|
|
}
|
||
|
|
else
|
||
|
|
{
|
||
|
|
deusEx();
|
||
|
|
}
|