8 lines
130 B
Text
8 lines
130 B
Text
|
|
do forever;
|
||
|
|
k = trunc(random()*20);
|
||
|
|
put (k);
|
||
|
|
if k = 10 then leave;
|
||
|
|
k = trunc(random()*20);
|
||
|
|
put skip list (k);
|
||
|
|
end;
|