Shift list elements to left by 3: Difference between revisions

Added Arturo implementation
(→‎Excel LAMBDA: Added a variant defined in terms of MAKEARRAY)
(Added Arturo implementation)
Line 576:
{{output}}
<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}}==
1,532

edits