LSL 101/Simple Script Skeleton
< LSL 101
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).)