mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 17:42:16 +00:00
12 lines
287 B
Plaintext
12 lines
287 B
Plaintext
default
|
|
{
|
|
state_entry()
|
|
{
|
|
float num1 = llFrand(100.0);
|
|
float num2 = llFrand(100.0);
|
|
llOwnerSay("y = " + (string)num1);
|
|
llOwnerSay("x = " + (string)num2);
|
|
llOwnerSay("The tangent of y divided by x is " + (string)llAtan2(num1, num2));
|
|
}
|
|
}
|