Difference between revisions of "Print"
From ComputerCraft Wiki
m |
|||
| Line 1: | Line 1: | ||
| + | {{lowercase}} | ||
{{Function | {{Function | ||
|name=print | |name=print | ||
Revision as of 13:13, 8 July 2012
| Lets you print the string on the terminal. | |
| Syntax | print(string) |
| Returns | nil |
| Part of | ComputerCraft |
| API | none |
Examples
| Prints something. | |
| Code |
print ("Hello World!")
|
| Output | Hello World! |