Hello world in LSL


SUBMITTED BY: Guest

DATE: Dec. 11, 2013, 10:26 p.m.

FORMAT: Text only

SIZE: 199 Bytes

HITS: 812

  1. default
  2. {
  3. state_entry()
  4. {
  5. llSay(0, "Hello World!");
  6. }
  7. touch_start(integer t)
  8. {
  9. llSay(0, "Hello, " + llDetectedName(0));
  10. }
  11. }

comments powered by Disqus