mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
390f19b649
Available under the MIT license. Adding it to see how the build farm likes it. They claim to be 100% pure ANSI C and compile everywhere. Lets see. If it breaks badly, we can remove it again.
8 lines
169 B
Lua
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())
|