Difference between revisions of "Print"

From OpenEUO
Jump to: navigation, search
(Created page with " print (···) Receives any number of arguments, and prints their values to the feedback window, using the tostring function to convert them to strings. print is not intended fo...")
 
 
Line 1: Line 1:
 
  print (···)
 
  print (···)
Receives any number of arguments, and prints their values to the feedback window, using the tostring function to convert them to strings. print is not intended for formatted output, but only as a quick way to show a value, typically for debugging. For formatted output, use string.format.  
+
Receives any number of arguments, and prints their values to the script's feedback window (or log in the case of the gui thread), using the tostring function to convert them to strings. print is not intended for formatted output, but only as a quick way to show a value, typically for debugging. For formatted output, use string.format.  
  
 
[[String.format]]
 
[[String.format]]
 +
 +
[[TMessageBox]]

Latest revision as of 16:00, 9 October 2010

print (···)

Receives any number of arguments, and prints their values to the script's feedback window (or log in the case of the gui thread), using the tostring function to convert them to strings. print is not intended for formatted output, but only as a quick way to show a value, typically for debugging. For formatted output, use string.format.

String.format

TMessageBox