Difference between revisions of "Textutils.slowWrite"
From ComputerCraft Wiki
Zalerinian (Talk | contribs) (Made the page) |
m (match code and example output) |
||
| Line 10: | Line 10: | ||
{{Example | {{Example | ||
|desc=Writes text to the screen, character by character. | |desc=Writes text to the screen, character by character. | ||
| − | |code=textutils.slowWrite("Hello World!") | + | |code=textutils.slowWrite("Hello, World!") |
|output=Hello, world! | |output=Hello, world! | ||
}} | }} | ||
}} | }} | ||
Revision as of 15:07, 20 September 2012
| Writes to the screen | |
| Syntax | textutils.slowWrite(string text) |
| Returns | Text written on the screen |
| Part of | ComputerCraft |
| API | textutils |
Examples
| Writes text to the screen, character by character. | |
| Code |
textutils.slowWrite("Hello, World!")
|
| Output | Hello, world! |