Difference between revisions of "Print"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | Receives any number of arguments, and prints their values to | + | <translate>Receives any number of arguments, and prints their values to [[[stdout`, 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]]].</translate> |
<source lang="lua"> | <source lang="lua"> | ||
print(e1,e2,...) | print(e1,e2,...) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''e1''': (any) any argument <br/> | + | '''e1''': (any) <translate>any argument</translate> <br/> |
− | '''e2''': (any) any second argument '''optional'''<br/> | + | '''e2''': (any) <translate>any second argument</translate> '''optional'''<br/> |
− | '''...''': (any) other optional arguments '''optional'''<br/> | + | '''...''': (any) <translate>other optional arguments</translate> '''optional'''<br/> |
Revision as of 13:38, 23 August 2018
Available since: Gideros 2011.6
Description
Receives any number of arguments, and prints their values to [[[stdout`, 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]]].
print(e1,e2,...)
Parameters
e1: (any) any argument
e2: (any) any second argument optional
...: (any) other optional arguments optional