Been a C/C++ software engineer over 30 years, just not Lua. I've browsed the Wiki and nothing seems to answer these questions.
Question -- Colored Text:
In OpenComputers, need sample code that prints colored text with Tier2 or Tier3 computer systems.
I've tried:
local component = require("component")
local gpu = component.gpu
local term = require("term")
-- green text
gpu.setForeground(0x00FF00)
term.write("howdy world\n")
In order to print colored text, do I need to use the functions in gpu or in term?
Question -- The Editor and adjusting resolutions.