term.redirect
From ComputerCraft Wiki
Revision as of 09:27, 24 November 2012 by 69.10.195.231 (Talk)
Function term.redirect | |
Redirects terminal output to a monitor (By using peripheral.wrap to get the monitor object.) or other redirect target. | |
Syntax | term.redirect() |
Returns | None |
Part of | ComputerCraft |
API | term |
Examples
Example | |
Prints "Hello World!" on the right monitor. | |
Code |
term.redirect(peripheral.wrap("right")) |
Output | None |