We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0585f3c commit 820dca4Copy full SHA for 820dca4
1 file changed
List.ark
@@ -660,9 +660,13 @@
660
661
(mut _output [])
662
(mut _last _start)
663
- (while (if (> _step 0) (< _last _end) (> _last _end)) {
664
- (append! _output _last)
665
- (set _last (+ _last _step)) })
+ (while
+ (if (> _step 0)
+ (< _last _end)
666
+ (> _last _end))
667
+ {
668
+ (append! _output _last)
669
+ (set _last (+ _last _step)) })
670
671
_output }))
672
0 commit comments