Loops/For with a specified step: Difference between revisions

Content added Content deleted
(I added Salmon)
(adding sas)
Line 669: Line 669:
print(x, ", ");;
print(x, ", ");;
print("who do we appreciate?\n");</lang>
print("who do we appreciate?\n");</lang>

=={{header|SAS}}==
<lang sas>data _null_;
do i=1 to 10 by 2;
put i;
end;
run;</lang>


=={{header|Sather}}==
=={{header|Sather}}==