Difference between revisions of "Term.write"
From ComputerCraft Wiki
Zalerinian (Talk | contribs) (Term.write() page added.) |
m (moved Term.write() to Term.write) |
(No difference)
|
Revision as of 20:43, 7 July 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
Example | |
Writes text to the screen. This does not produce a new line, and anything else printed or written after this will be on the same line. | |
Code |
term.write("text") |