Shift list elements to left by 3: Difference between revisions

Content added Content deleted
(→‎Excel LAMBDA: Added a variant defined in terms of MAKEARRAY)
(Added Arturo implementation)
Line 576: Line 576:
{{output}}
{{output}}
<lang applescript>{4, 5, 6, 7, 8, 9, 1, 2, 3}</lang>
<lang applescript>{4, 5, 6, 7, 8, 9, 1, 2, 3}</lang>

=={{header|Arturo}}==

<lang rebol>lst: [1 2 3 4 5 6 7 8 9]
print rotate.left lst 3</lang>

{{out}}

<pre>4 5 6 7 8 9 1 2 3</pre>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==