mirror of
https://github.com/janet-lang/janet
synced 2025-09-02 19:08:04 +00:00
Rename to janet
This commit is contained in:
14
examples/primes.janet
Normal file
14
examples/primes.janet
Normal file
@@ -0,0 +1,14 @@
|
||||
# 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 @[])
|
||||
(loop [i :range [2 n]]
|
||||
(var isprime? true)
|
||||
(def len (length list))
|
||||
(loop [j :range [0 len]]
|
||||
(def trial (get list j))
|
||||
(if (zero? (% i trial)) (:= isprime? false)))
|
||||
(if isprime? (array.push list i)))
|
||||
list)
|
Reference in New Issue
Block a user