1
0
mirror of https://github.com/janet-lang/janet synced 2025-11-13 13:57:19 +00:00

Merge remote-tracking branch 'upstream/master' into typed-array

This commit is contained in:
J.-F. Cap
2019-02-21 01:43:22 +01:00
2 changed files with 7 additions and 2 deletions

View File

@@ -702,8 +702,8 @@
arr)
3 (do
(def [n m s] args)
(def arr (array/new n))
(loop [i :range [n m s]] (put arr (- i n) i))
(def arr (array/new (math/ceil (/ n s))))
(loop [i :range [n m s]] (array/push arr i))
arr)
(error "expected 1 to 3 arguments to range")))