Loops/For with a specified step: Difference between revisions

(→‎{{header|Vlang}}: Rename "Vlang" in "V (Vlang)")
Line 2,056:
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"who do we appreciate?\n"</span><span style="color: #0000FF;">)</span>
<!--</syntaxhighlight>-->
 
=={{header|Phixmonti}}==
<syntaxhighlight lang="Phixmonti">/# Rosetta Code problem: https://rosettacode.org/wiki/Loops/For_with_a_specified_step
by Galileo, 11/2022 #/
 
include ..\Utilitys.pmt
 
( 2 8 2 ) for print ", " print endfor
"who do we appreciate?" print</syntaxhighlight>
{{out}}
<pre>2, 4, 6, 8, who do we appreciate?
=== Press any key to exit ===</pre>
 
=={{header|PHP}}==
57

edits