14 lines
139 B
Plaintext
14 lines
139 B
Plaintext
_Pragma("OPT inline")
|
|
|
|
string f(integer x) inline
|
|
{
|
|
return "ok";
|
|
}
|
|
|
|
default
|
|
{
|
|
state_entry()
|
|
{
|
|
llOwnerSay(f(5));
|
|
}
|
|
} |