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

14 lines
408 B
Text

default{timer(){
integer x = llGetNumberOfPrims();
integer y = llGetUnixTime();
llOwnerSay((string)(x * 1.0 / y));
llOwnerSay((string)(x / 1.0 / y));
llOwnerSay((string)(x / (-1.0) / y));
llOwnerSay((string)(x * 1.0 / y));
llOwnerSay((string)(x * (-1.0) / y));
llOwnerSay((string)(x * -2.0));
llOwnerSay((string)(x * 0.0 + y));
llOwnerSay((string)(x + 0.0 + y));
}}