Let me know if there are any errors.
local mon = peripheral.wrap("back")
term.redirect(mon)
mon.setTextScale(2)
mon.setTextColor(colors.blue)
mon.setBackgroundColor(colors.white)
mon.clear()
mon.setCursorPos(1, 1)
print([[
FuzzyCorp ToDo List
1. ----- 2. ----- 3. -----
4. ----- 5. ----- 6. -----
7. ----- 8. ----- 9. -----
10. ----- 11. ----- 12. -----
]])
term.restore()
This way, it's all in "print" and should be easier to edit/add more later on if you need to.












