Difference between revisions of "Term.redirect"
From ComputerCraft Wiki
| Line 5: | Line 5: | ||
|api=term | |api=term | ||
|addon=ComputerCraft | |addon=ComputerCraft | ||
| − | |desc=Redirects terminal output to a monitor(By using [[peripheral.wrap | + | |desc=Redirects terminal output to a monitor(By using [[peripheral.wrap]]() to get the monitor object.) |
|examples= | |examples= | ||
{{Example | {{Example | ||
Revision as of 13:06, 22 September 2012
| 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
| Prints "Hello World!" on the right monitor. | |
| Code |
term.redirect(peripheral.wrap("right"))
|
| Output | None |