Skip to content

Commit

Permalink
Convert example to exemplar
Browse files Browse the repository at this point in the history
* Rename example files to exemplar

See exercism/docs#23

* [Docs] Correct .meta/example references to .meta/exemplar

* [Docs] Use exemplar instead of example

* [Docs] Update example name in file listings

* [Julia] Convert to exemplar.jl

* [elm] Rename .meta/Cook.elm to .meta/Examplar.elm

* [elm] Rename .meta/Examplar.elm .meta/Exemplar.elm

Co-authored-by: Matthieu Pizenberg <[email protected]>
  • Loading branch information
2 people authored and cmccandless committed Jan 29, 2021
1 parent f2aa20f commit 54efe75
Show file tree
Hide file tree
Showing 15 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions reference/implementing-a-concept-exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ languages
├── .meta
| ├── config.json
| ├── design.md
| └── example.py
| └── exemplar.py
├── <CONCEPT_NAME>.py
└── <CONCEPT_NAME>_test.py
Expand All @@ -57,7 +57,7 @@ These are files specific to the Python track, and can be added in any order:
- `<SLUG>/<CONCEPT_NAME>_test.py`
The test suite a submitted solution will be tested against. Tests should be written using [`unittest.TestCase`][unittest] ([example test file][example-testfile]). We do use PyTest as our test runner, but please check with a maintainer before using any PyTest-specific methods.

- `.meta/example.py`
- `.meta/exemplar.py`
An idiomatic implementation that passes all the provided tests. This solution file should only use **syntax & concepts introduced in the concept exercise itself, or one of its prerequisites.**. This means avoiding the use of `classes`, `comprehensions`, `generators`, `slice assignment`, `regex`, `filter/map/reduce`, standard library modules (_like `datetime`_), or 3rd-party libraries unless the exercise has introduced these concepts or they appear in the exercise's prerequisite tree. Please follow the [PEP8][pep8] formatting guidelines. Additionally, we'd like you to avoid any single-letter or cryptic variable names.

## Step 2: Add exercise documentation files
Expand Down

0 comments on commit 54efe75

Please sign in to comment.