Files
love-android/jni/lua/test/printf.lua
T
Martin Felis 73d1ceb81d initial commit
2013-12-04 00:34:52 +01:00

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