Files
LSL-PyOptimizer/unit_tests/regression.suite/issue-8.lsl

15 lines
408 B
Plaintext
Raw Normal View History

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));
}}