RosettaCodeData/Task/Loops-While/SAS/loops-while.sas
2023-07-01 13:44:08 -04:00

7 lines
69 B
SAS

data _null_;
n=1024;
do while(n>0);
put n;
n=int(n/2);
end;
run;