c_sharp_example.txt 261 B

123456789101112
  1. //c#
  2. namespace SecondLife {
  3. public class Script : OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass
  4. {
  5. public Script() { }
  6. public void default_event_state_entry( )
  7. {
  8. llSay(0, "testing, I've been touched");
  9. }
  10. }}