open("example.txt","w") -- set the buffer size of 8K size = 2^13 f:setvbuf("full", size) -- write the contents f:write("Welcome to tutorialspoint.com", "\n") f:write("Simply Easy Learning", "\n") -- flush the written Output f:flush() -- close the file handle f:close...