Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/jkthorne/prime

A Crystal implementation of a prime number generator
https://github.com/jkthorne/prime

Last synced: about 2 months ago
JSON representation

A Crystal implementation of a prime number generator

Lists

README

        

# prime

[![Build Status](https://travis-ci.com/wontruefree/prime.svg?branch=master)](https://travis-ci.com/wontruefree/prime)

A basic implementation of a prime number generator.

## Installation

1. Add the dependency to your `shard.yml`:

```yaml
dependencies:
prime:
github: wontruefree/prime
```

## Usage

```crystal
require "prime"

primes = [] of Int32

Prime.each do |p|
break if p > 541
primes << p
end
```

## Contributing

1. Fork it ()
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

## Contributors

- [Jack Thorne](https://github.com/wontruefree) - creator and maintainer