Difference between revisions of "Term.write"

From ComputerCraft Wiki
Jump to: navigation, search
(beeOucxKCesXKQc)
(Undo revision 3074 by 201.47.253.83 (talk))
Line 1: Line 1:
Hi Edmund, we are very interested in your work and was just woeirndng if we could get a quote on actual day photography as well as a love story cinematography. We are having our wedding on the 4th of December 2011 and was woeirndng on your availability as well as your pricing. Could i get a pricing for only actual day wedding as well as a package with both the cinematography + Photography. Feel free to send me other packages as well so that we can have a pick. Cheers mate
+
{{lowercase}}
 +
{{Function
 +
|name=term.write
 +
|args= [[string (type)|string]] text
 +
|returns=Text written on the screen
 +
|api=term
 +
|addon=ComputerCraft
 +
|desc=Writes to the screen
 +
|examples=
 +
{{Example
 +
|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.
 +
|code=term.write("Hello, World!")
 +
|output=Hello, World!
 +
}}
 +
}}

Revision as of 04:50, 21 September 2012


Grid Redstone.png  Function term.write
Writes to the screen
Syntax term.write(string text)
Returns Text written on the screen
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!