LSL-PyOptimizer/unit_tests/regression.suite/issue-8.out
2019-07-02 15:40:20 +02:00

16 lines
468 B
Text

default
{
timer()
{
integer x = llGetNumberOfPrims();
integer y = llGetUnixTime();
llOwnerSay((string)((float)x / y));
llOwnerSay((string)((float)x / y));
llOwnerSay((string)(-(float)x / y));
llOwnerSay((string)((float)x / y));
llOwnerSay((string)(-(float)x / y));
llOwnerSay((string)(-(x + (float)x)));
llOwnerSay((string)((float)y));
llOwnerSay((string)((float)x + y));
}
}