May 2017
Intermediate to advanced
416 pages
21h 33m
English
The function io.write takes n string arguments and writes them to the corresponding file descriptor:
io.write(args,…)
Look at the following example:
local filename str1 = "hello " str2 = "nmaper" file = io.open (filename [, mode]) file:write(str1, str2)
Read now
Unlock full access