summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2014-04-14 14:32:45 -0400
committerTim Hatch <tim@timhatch.com>2014-04-14 14:32:45 -0400
commit3253062f3312b6275751d9309c24239810a01cdf (patch)
treee0f7e29500710b6c5f0827c5116bb83f9ae46f06 /tests
parent4ad387c5b999a10af701865a2cb8273b0f206637 (diff)
parent272c0c8bb1887a5b44b3dec4a8947f1da4dbb73a (diff)
downloadpygments-3253062f3312b6275751d9309c24239810a01cdf.tar.gz
Merged in jlafon/pygments-main-redo-pr-276 (pull request #315)
Diffstat (limited to 'tests')
-rw-r--r--tests/examplefiles/hello.lsl12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/examplefiles/hello.lsl b/tests/examplefiles/hello.lsl
new file mode 100644
index 00000000..61697e7f
--- /dev/null
+++ b/tests/examplefiles/hello.lsl
@@ -0,0 +1,12 @@
+default
+{
+ state_entry()
+ {
+ llSay(0, "Hello, Avatar!");
+ }
+
+ touch_start(integer total_number)
+ {
+ llSay(0, "Touched.");
+ }
+}