DO UNTILステートメント
条件が真になるまで、処理をループする。 https://documentation.sas.com/doc/ja/pgmsascdc/v_061/ds2ref/p0p2sapr15j0z4n14o4b0v1i2xb7.htm#n0y0tj44j79ow1n15beup6finonl
proc ds2;
data _null_;
method run();
k = 1;
do until(k > 6);
k = k + 1;
end;
end; /* method end*/
enddata;
end;