TDengine/2.0/deps/lua/test/printf.lua
Hongze Cheng 0a0c5094c7 refact
2021-09-21 20:59:31 +08:00

7 lines
169 B
Lua

-- 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())