textutils.slowWrite
From ComputerCraft Wiki
Revision as of 18:41, 28 November 2012 by AfterLifeLochie (Talk | contribs) (Moved to CAT:APIFunctions)
Function textutils.slowWrite | |
Writes to the screen | |
Syntax | textutils.slowWrite(string text) |
Returns | Text written on the screen |
Part of | ComputerCraft |
API | textutils |
Examples
Example | |
Writes text to the screen, character by character. | |
Code |
textutils.slowWrite("Hello, World!") |
Output | Hello, world! |