SPC  Version 0.9.5
 All Files Functions Groups Pages
t1.spc

This is an example of how to use the puts and Wait functions.

#pragma autostart
task t1()
{
while(true)
{
puts("1 ");
}
}
task t2()
{
while(true)
{
puts("2 ");
}
}
task main()
{
start t1;
start t2;
}