RosettaCodeData/Task/Environment-variables/LSL/environment-variables.lsl
2023-07-01 13:44:08 -04:00

8 lines
272 B
Text

default {
state_entry() {
llOwnerSay("llGetTimestamp()="+(string)llGetTimestamp());
llOwnerSay("llGetEnergy()="+(string)llGetEnergy());
llOwnerSay("llGetFreeMemory()="+(string)llGetFreeMemory());
llOwnerSay("llGetMemoryLimit()="+(string)llGetMemoryLimit());
}
}