mirror of
https://github.com/janet-lang/janet
synced 2024-11-16 21:54:48 +00:00
4e4dd31164
Add quasiquote, unquote, and unquote-splicing as specials rather than a macro.
15 lines
376 B
Plaintext
15 lines
376 B
Plaintext
# Return an array of primes. This is a trivial and extremely naive algorithm.
|
|
|
|
(defn primes
|
|
"Returns a list of prime numbers less than n."
|
|
[n]
|
|
(def list @[])
|
|
(for i 2 n
|
|
(var isprime? true)
|
|
(def len (length list))
|
|
(for j 0 len
|
|
(def trial (get list j))
|
|
(if (zero? (% i trial)) (:= isprime? false)))
|
|
(if isprime? (array/push list i)))
|
|
list)
|