]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/src/third_party/lua-5.1.5/test/printf.lua
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / src / third_party / lua-5.1.5 / test / printf.lua
1 -- an implementation of printf
2
3 function printf(...)
4 io.write(string.format(...))
5 end
6
7 printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())