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

Two programs parallel

Started by MailoStudios, 13 April 2014 - 05:15 PM
MailoStudios #1
Posted 13 April 2014 - 07:15 PM
How I can run my two programs system and homescreen at the same time?(with the parallel api)
Please help me
Lignum #2
Posted 13 April 2014 - 07:18 PM
parallel.waitForAll(function() shell.run("system") end, function() shell.run("homescreen") end)
That should do the job.
MailoStudios #3
Posted 13 April 2014 - 07:25 PM
Thank you!
Lignum #4
Posted 13 April 2014 - 07:29 PM
Thank you!
You're welcome.