Difference between revisions of "Io.write"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Writes value to default output, basically equivalent to io.output():write. <source lang="lua"> = io.wr...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[io]]<br/>
 +
 
=== Description ===
 
=== Description ===
Writes value to default output, basically equivalent to io.output():write.
+
Writes '''value''' to default output, basically equivalent to io.output():write.
<source lang="lua">
+
<syntaxhighlight lang="lua">
= io.write(value1...,)
+
io.write(value1,...)
</source>
+
</syntaxhighlight>
'''value1:''' (string) value to write ''''''<br/>
+
 
'''...:''' (multiple) other optional values to write '''optional'''<br/>
+
=== Parameters ===
 +
'''value1''': (string) value to write<br/>
 +
'''...''': (multiple) other optional values to write '''optional'''<br/>
 +
 
 +
{{Io}}

Latest revision as of 15:30, 13 July 2023

Available since: Gideros 2011.6
Class: io

Description

Writes value to default output, basically equivalent to io.output():write.

io.write(value1,...)

Parameters

value1: (string) value to write
...: (multiple) other optional values to write optional