This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
jahildebra's profile picture

- Problem Solved -

Started by jahildebra, 26 March 2012 - 07:04 PM
jahildebra #1
Posted 26 March 2012 - 09:04 PM
Problem solved.

Thanks to everyone that helped me out!
Edited on 28 May 2015 - 09:44 PM
Liraal #2
Posted 26 March 2012 - 09:58 PM
using term.write and/or overwriting the default print/write are the only things that come to my mind. You can do a thing like this:

local write = term.write
which overrides the default write with term.write for use locally (within the program code).
Such a change is also possible globally, but that is harder and less stable.