Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 3 |
tristanc |
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())
|