Skip to content

Commit

Permalink
Merge pull request #219 from lescx/patch-1
Browse files Browse the repository at this point in the history
Typo in range.janet
  • Loading branch information
bakpakin authored Jun 15, 2024
2 parents 2cb08c2 + 8774d90 commit 73f1829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/range.janet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(range 10) # -> @[0 1 2 3 4 6 7 8 9]
(range 10) # -> @[0 1 2 3 4 5 6 7 8 9]
(range 5 10) # -> @[5 6 7 8 9]
(range 5 10 2) # -> @[5 7 9]
(range 5 11 2) # -> @[5 7 9]
Expand Down

0 comments on commit 73f1829

Please sign in to comment.