I triy to make a program, that has a menu and shows the time at once.
But if I run it in a parallel it wont work!
Code
local function menu() --some crappy menu things end local function time() While true do term.setCursorPos(1,1) term.write(textutils.formatTime(os.time(), true) sleep(10) end end parallel.waitForAny(menu, time)whats wrong?












