Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/contrib/lua-5.1.5/test/printf.lua
3203 views
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())
8
9