term.redirect
From ComputerCraft Wiki
Revision as of 20:54, 4 August 2012 by 71.179.239.122 (Talk)
Function term.redirect | |
Redirects terminal output to a monitor(By using peripheral.wrap() to get the monitor object.) | |
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 |