mu/archive/1.vm/fork.mu

17 lines
162 B
Forth
Raw Normal View History

2015-05-11 19:00:50 +00:00
# example program: running multiple routines
def main [
start-running thread2
2015-05-06 04:19:56 +00:00
{
$print 34
2015-05-06 04:19:56 +00:00
loop
}
]
def thread2 [
2015-05-06 04:19:56 +00:00
{
$print 35
2015-05-06 04:19:56 +00:00
loop
}
]