term.write
From ComputerCraft Wiki
| Writes text to the screen at the current cursor position, using the current text/background colours as set via term.setTextColor() / term.setBackgroundColor() (the defaults being white text on a black background). Does not apply word-wrap (unlike write()), nor does it automatically move the cursor down a line afterwards (unlike print()). If you wish to use multiple colours in one go, refer to term.blit(). | |
| Syntax | term.write(string text) |
| Returns | nil |
| Part of | ComputerCraft |
| API | term |