summaryrefslogtreecommitdiff
path: root/com32/lua/test/printf.lua
diff options
context:
space:
mode:
authorFerenc Wágner <wferi@niif.hu>2013-10-10 16:48:04 +0200
committerFerenc Wágner <wferi@niif.hu>2014-03-01 17:40:34 +0100
commit4cfcef19a983dfa971608a8917cd74ebfa0d7376 (patch)
tree0c5abe5d8abc190d02847bd99424c24be6fadb18 /com32/lua/test/printf.lua
parenta06818de2a4c49bd64a024dd4f4a09a0caf1f0ac (diff)
downloadsyslinux-4cfcef19a983dfa971608a8917cd74ebfa0d7376.tar.gz
lua: import Lua 5.2.2
Source downloaded from http://www.lua.org/ftp/lua-5.2.2.tar.gz. The com32/lua directory now matches exactly the source distribution, plus the various Syslinux extension modules and their documentation.
Diffstat (limited to 'com32/lua/test/printf.lua')
-rw-r--r--com32/lua/test/printf.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/com32/lua/test/printf.lua b/com32/lua/test/printf.lua
deleted file mode 100644
index 58c63ff5..00000000
--- a/com32/lua/test/printf.lua
+++ /dev/null
@@ -1,7 +0,0 @@
--- an implementation of printf
-
-function printf(...)
- io.write(string.format(...))
-end
-
-printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())