1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-10 20:40:14 +02:00
nn-usb-fpga/sie_fs/root/scripts/lua/test/printf.lua

8 lines
169 B
Lua
Raw Normal View History

2010-09-22 01:05:23 +03:00
-- 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())