summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/lua/test/printf.lua
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/util/lua/test/printf.lua')
-rw-r--r--crawl-ref/source/util/lua/test/printf.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/util/lua/test/printf.lua b/crawl-ref/source/util/lua/test/printf.lua
deleted file mode 100644
index 58c63ff518..0000000000
--- a/crawl-ref/source/util/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())