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

How do I Multitasking or Multi-threading?

Started by WattDev, 07 June 2017 - 10:24 AM
WattDev #1
Posted 07 June 2017 - 12:24 PM
How I can do it without without those multishell tab like some OS?
SquidDev #2
Posted 07 June 2017 - 01:01 PM
What are you stuck on? People have already given you some pointers in a different thread, so I don't want to reiterate on that.
WattDev #3
Posted 11 June 2017 - 07:26 AM
What are you stuck on? People have already given you some pointers in a different thread, so I don't want to reiterate on that.

I understand what people said.
I want to learn a multitask that use taskbar(like running two program in the same time).

What are you stuck on? People have already given you some pointers in a different thread, so I don't want to reiterate on that.

I understand what people said.
I want to learn a multitask that use taskbar(like running two program in the same time).

Update:
Now I found how to do it!
Just do:
parallel.waitForAll(function() shell.run("Your program that do not print text") end, function() shell.run("More program") end)