From b8147afcc5bfbeb5fad62e4f68f1b88fc6c60d96 Mon Sep 17 00:00:00 2001 From: sanine Date: Thu, 18 Aug 2022 20:52:26 -0500 Subject: add lua-5.1.5 files --- libs/lua-5.1.5/test/printf.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 libs/lua-5.1.5/test/printf.lua (limited to 'libs/lua-5.1.5/test/printf.lua') diff --git a/libs/lua-5.1.5/test/printf.lua b/libs/lua-5.1.5/test/printf.lua new file mode 100644 index 0000000..58c63ff --- /dev/null +++ b/libs/lua-5.1.5/test/printf.lua @@ -0,0 +1,7 @@ +-- 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()) -- cgit v1.2.1