Difference between revisions of "Textutils.slowPrint"
From ComputerCraft Wiki
Zalerinian (Talk | contribs) (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, | + | |output=Hello, World! |
}} | }} | ||
}} | }} | ||
Revision as of 21:13, 13 August 2012
| Prints to the screen | |
| Syntax | textutils.slowPrint(string text) |
| Returns | Text printed on the screen |
| Part of | ComputerCraft |
| API | textutils |
Examples
| Prints text to the screen, character by character. | |
| Code |
textutils.slowPrint("Hello World!")
|
| Output | Hello, World! |