Difference between revisions of "Textutils.slowWrite"

From ComputerCraft Wiki
Jump to: navigation, search
m (match code and example output)
m (Moved to CAT:APIFunctions)
Line 14: Line 14:
 
}}
 
}}
 
}}
 
}}
 +
 +
[[Category:API_Functions]]

Revision as of 18:41, 28 November 2012


Grid Redstone.png  Function textutils.slowWrite
Writes to the screen
Syntax textutils.slowWrite(string text)
Returns Text written on the screen
Part of ComputerCraft
API textutils

Examples

Grid paper.png  Example
Writes text to the screen, character by character.
Code
textutils.slowWrite("Hello, World!")
Output Hello, world!