Skip to main content

DO UNTILステートメント

条件が真になるまで、処理をループする。

proc ds2;
  data _null_;
    method run();
      k = 1;
      do until(k > 6);
         k = k + 1;
      end;
    end; /* method end*/
  enddata;
end;