The code below is just a test, somethign i tried because i wanted to run 2 Procs at the same time, independantly. WHat I did below ran them one after another. The idea was to see if the text would show up in between each other, that would show that they are running at the same time, but instead it was seperate when I ran the verb.
How can I run 2 procs starting at the same time?
mob
verb/RunningProcs()
run1()
run2()
proc/run1()
usr<<"Run1"
sleep(20)
usr<<"Run1.1"
sleep(20)
usr<<"Run1.2"
proc/run2()
usr<<"Run2"
sleep(10)
usr<<"Run2.1"
sleep(10)
usr<<"Run2.2"
sleep(10)
usr<<"Run2.3"
sleep(10)
usr<<"Run2.4"