Hello Avatar
Revision as of 17:54, 22 November 2008 by Zai Lynch (talk | contribs) (Undo revision 150653 by Coxigrue Bimbogami (Talk) stored it at Hello Avatar/fr)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
The following script contains the default code that is placed in every new script. It says "Hello, Avatar" when it is saved or reset and says "Touched." when it is touched. That makes it the LSL representation of the famous Hello world program. <lsl> default {
state_entry() { llSay(0, "Hello, Avatar!"); }
touch_start(integer total_number) { llSay(0, "Touched."); }
} </lsl>