#67
Prime Numbers
 

Difficulty:Medium
Topics:primes


Write a function which returns the first x number of prime numbers.
test not run
(= (__ 2) [2 3])
test not run
(= (__ 5) [2 3 5 7 11])
test not run
(= (last (__ 100)) 541)


Code which fills in the blank: