Random
Source Code

lsl

Lsl is a in-game language used in the online game Second Life. It is a cross between Java and C and is an easy language to learn if you understand the basics of programming. The language uses built-in functions and can have user defined functions. Lsl is used to make the objects in Second Life do things like speak or move or change color.

this is an example of lsl that makes the object say Hello World!

default
{

state_entry()

{

llSay(0,"Hello World!");

}
}

by helpful informer May 4, 2009

9👍 16👎