task tache1() { int i,j; for(j=0;j<10;j++) { for(i=0;i<1000;i++) { COP_SoundPlayTone(i,500,10,3); } for(i=1000;i>0;i--) { COP_SoundPlayTone(i,500,10,3); } } } task tache2() { int i,j; char boucle[10]; for(j=0;j<1000;j++) { COP_NumtoString(j,boucle); COP_DrawText(1,1,boucle); COP_Wait(500); } } task main() { precedes tache1,tache2; }