Lua - Standard output (stdout)

Published 2014/03/03 by Admin in LUA

You can use the print() function to write a line to the stdout.

  • print("Hello"), or
  • print "Hello"
If you want to write to stdout without the new line appended at the end use the io.write() function.
  • io.write("Hello")

Add comment

  Country flag

biuquote
  • Comment
  • Preview
Loading

my coding

This is a collection of all the coding gems I have found and would like to share with the world!