summaryrefslogtreecommitdiff
path: root/apps/plugins/helloworld.lua
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-25 13:26:05 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-06-25 13:26:05 +0000
commit3ff84e5e4ff402b550b7fa768e010a3586dded10 (patch)
tree34a6c480c7ce02063ebb22c1c1e73d41b0fb7073 /apps/plugins/helloworld.lua
parent48f4512518c60456d02b3802d0bae41e6095ec21 (diff)
downloadrockbox-3ff84e5e4ff402b550b7fa768e010a3586dded10.tar.gz
rockbox-3ff84e5e4ff402b550b7fa768e010a3586dded10.zip
Lua: add the package library
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21506 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/helloworld.lua')
-rw-r--r--apps/plugins/helloworld.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/helloworld.lua b/apps/plugins/helloworld.lua
index c0e75540c7..ed8726c022 100644
--- a/apps/plugins/helloworld.lua
+++ b/apps/plugins/helloworld.lua
@@ -21,7 +21,7 @@
21 21
22]]-- 22]]--
23 23
24dofile("actions.lua") -- Contains rb.actions & rb.contexts 24require("actions") -- Contains rb.actions & rb.contexts
25 25
26-- Example function which splashes a message for x seconds 26-- Example function which splashes a message for x seconds
27function sayhello(seconds) 27function sayhello(seconds)