mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
14 lines
408 B
Text
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));
|
|
|
|
}}
|