term.write

From ComputerCraft Wiki
Revision as of 18:40, 4 June 2014 by Apemanzilla (Talk | contribs) (Correction)

Jump to: navigation, search


Grid Redstone.png  Function term.write
Writes to the screen without automatically going down a line. Does not apply word-wrap, unlike write() or print().
Syntax term.write(string text)
Returns nil
Part of ComputerCraft
API term

Examples

Grid paper.png  Example
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.
Code
term.write("Hello, World!")
Output Hello, World!