new 990aace9276b9b070a7fbae82fa73469c6d99ec2
[tagua/yd.git] / lua / test / printf.lua
blob58c63ff5184e4f4274f9e0408a2959526c365ac0
1 -- an implementation of printf
3 function printf(...)
4 io.write(string.format(...))
5 end
7 printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())