Difference between revisions of "Io.write"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | === | + | '''Class:''' [[io]]<br/> |
− | + | ||
− | < | + | === Description === |
− | + | Writes '''value''' to default output, basically equivalent to io.output():write. | |
− | </ | + | <syntaxhighlight lang="lua"> |
− | === | + | io.write(value1,...) |
− | '''value1''': (string) | + | </syntaxhighlight> |
− | '''...''': (multiple) | + | |
+ | === Parameters === | ||
+ | '''value1''': (string) value to write<br/> | ||
+ | '''...''': (multiple) other optional values to write '''optional'''<br/> | ||
+ | |||
+ | {{Io}} |
Latest revision as of 14: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