| LIB "tasks.lib";
ring R = 0, (x,y), dp;
ideal I = x9y2+x10, x2y7-y8;
task t = "std", list(I);
startTasks(t);
t;
==> A task with the following properties:
==> command: std
==> no. of arguments: 1
==> state: started
==>
killTask(t);
t;
==> An uninitialized task
==>
getState(t);
==> uninitialized
|