LSL 101/Simple Script Skeleton
< LSL 101
Jump to navigation
Jump to search
Revision as of 12:10, 6 May 2009 by Omei Turnbull (talk | contribs) (Replacing page with '{{LSL Wikibook Index}}Here is the simplest possible valid LSL script. It doesn't actually ask the computer to do anything but all scripts have, at minimum, this structure: <l...')
Here is the simplest possible valid LSL script. It doesn't actually ask the computer to do anything but all scripts have, at minimum, this structure:
<lsl> default {
state_entry() { }
} </lsl>
(For an alternative possible order of (or maybe philosophy of?) development, see LSL 101/Simple Script Skeleton(A).)