Difference between revisions of "Textutils.slowPrint"

From ComputerCraft Wiki
Jump to: navigation, search
(Added the page)
 
Line 11: Line 11:
 
|desc=Prints text to the screen, character by character.
 
|desc=Prints text to the screen, character by character.
 
|code=textutils.slowPrint("Hello World!")
 
|code=textutils.slowPrint("Hello World!")
|output=Hello, world!
+
|output=Hello, World!
 
}}
 
}}
 
}}
 
}}

Revision as of 21:13, 13 August 2012


Grid Redstone.png  Function textutils.slowPrint
Prints to the screen
Syntax textutils.slowPrint(string text)
Returns Text printed on the screen
Part of ComputerCraft
API textutils

Examples

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