Difference between revisions of "Term.write"
From ComputerCraft Wiki
Line 9: | Line 9: | ||
|examples= | |examples= | ||
{{Example | {{Example | ||
− | |desc=Writes text to the screen. | + | |desc=Writes text to the screen, at the cursor's current position. |
This does not produce a new line, and anything else printed or written after this will be on the same line. | This does not produce a new line, and anything else printed or written after this will be on the same line. | ||
|code=term.write("Hello, World!") | |code=term.write("Hello, World!") |
Revision as of 03:10, 19 August 2012
Function term.write | |
Writes to the screen | |
Syntax | term.write(string text) |
Returns | Text written on the screen |
Part of | ComputerCraft |
API | term |
Examples