Skip to content

Commit 820dca4

Browse files
committed
chore: format List.ark
1 parent 0585f3c commit 820dca4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

List.ark

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,9 +660,13 @@
660660

661661
(mut _output [])
662662
(mut _last _start)
663-
(while (if (> _step 0) (< _last _end) (> _last _end)) {
664-
(append! _output _last)
665-
(set _last (+ _last _step)) })
663+
(while
664+
(if (> _step 0)
665+
(< _last _end)
666+
(> _last _end))
667+
{
668+
(append! _output _last)
669+
(set _last (+ _last _step)) })
666670

667671
_output }))
668672

0 commit comments

Comments
 (0)