textutils.slowWrite
From ComputerCraft Wiki
| 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! |