Difference between revisions of "Textutils.slowPrint"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
|||
Line 14: | Line 14: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:API_Functions]] |
Revision as of 18:41, 28 November 2012
Function textutils.slowPrint | |
Prints to the screen | |
Syntax | textutils.slowPrint(string text) |
Returns | Text printed on the screen |
Part of | ComputerCraft |
API | textutils |
Examples
Example | |
Prints text to the screen, character by character. | |
Code |
textutils.slowPrint("Hello, World!") |
Output | Hello, World! |