prime
prime
A basic implementation of a prime number generator.
Installation
-
Add the dependency to your
shard.yml
:dependencies: prime: github: wontruefree/prime
Usage
require "prime"
primes = [] of Int32
Prime.each do |p|
break if p > 541
primes << p
end
Contributing
- Fork it (https://github.com/your-github-user/prime/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Jack Thorne - creator and maintainer