Files
Exercism/bash/sieve/.exercism/config.json
2023-08-13 16:11:39 +02:00

26 lines
483 B
JSON

{
"authors": [
"glennj"
],
"contributors": [
"bkhl",
"guygastineau",
"IsaacG",
"kotp"
],
"files": {
"solution": [
"sieve.sh"
],
"test": [
"sieve.bats"
],
"example": [
".meta/example.sh"
]
},
"blurb": "Use the Sieve of Eratosthenes to find all the primes from 2 up to a given number.",
"source": "Sieve of Eratosthenes at Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes"
}