Difference between revisions of "Textutils.slowPrint"
From ComputerCraft Wiki
Line 10: | Line 10: | ||
{{Example | {{Example | ||
|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 22:12, 13 August 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! |