exercism/zig/rotational-cipher/.exercism/config.json

20 lines
416 B
JSON
Raw Normal View History

2024-09-14 11:24:39 -04:00
{
"authors": [
"keiravillekode"
],
"files": {
"solution": [
"rotational_cipher.zig"
],
"test": [
"test_rotational_cipher.zig"
],
"example": [
".meta/example.zig"
]
},
"blurb": "Create an implementation of the rotational cipher, also sometimes called the Caesar cipher.",
"source": "Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Caesar_cipher"
}