Skip to content

Commit

Permalink
README: move accumulate under practice
Browse files Browse the repository at this point in the history
Should have been done with 2ef2c03,
which was a part of #936

This commit is part of #1083
  • Loading branch information
pwadsworth authored and petertseng committed Aug 14, 2022
1 parent 563bf59 commit 617e9c0
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,24 @@ The [track anatomy documentation](https://github.com/exercism/docs/blob/master/l
│ ├── RESOURCES.md
│ └── TESTS.md
└── exercises
├── accumulate
│ ├── package.yaml
│ ├── stack.yaml
│ ├── src
│ │ └── Accumulate.hs
│ ├── test
│ │ └── Tests.hs
│ └── .meta
│ ├── examples
│ │ └── success-standard
│ │ ├── package.yaml
│ │ └── src
│ │ └── Accumulate.hs
│ └── hints.md
├── allergies
│ └── ...
└── ...
└── practice
├── accumulate
│ ├── package.yaml
│ ├── stack.yaml
│ ├── src
│ │ └── Accumulate.hs
│ ├── test
│ │ └── Tests.hs
│ └── .meta
│ ├── examples
│ │ └── success-standard
│ │ ├── package.yaml
│ │ └── src
│ │ └── Accumulate.hs
│ └── hints.md
├── allergies
│ └── ...
└── ...
```
- `config.json`: Every exercise has to be registered here. It has a unique name and a difficulty. The sequence order is also the default order in which the exercises are fetched.

Expand Down

0 comments on commit 617e9c0

Please sign in to comment.