forked from exercism/perl5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation updates (exercism#595)
- Loading branch information
Showing
7 changed files
with
37 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Learning | ||
|
||
Exercism provides exercises and feedback but can be difficult to jump into for those learning Perl for the first time. Check out [learn.perl.org](http://learn.perl.org/) for instructions and information on getting started with Perl 5. | ||
Exercism provides exercises and feedback but can be difficult to jump into for those learning Perl for the first time. | ||
Check out [learn.perl.org](http://learn.perl.org/) for instructions and information on getting started with Perl. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# How to implement an Perl 5 concept exercise | ||
# How to implement a Perl concept exercise | ||
|
||
TODO: describe how to implement a concept exercise for the Perl 5 track. For inspiration, check out the [C# version of this file][csharp-implementing]. | ||
* Create a concept in the config.json concepts array e.g. Arrays, Hashes. | ||
* Create an exercise associated with that concept. See [stories][stories] for ideas. | ||
* Create a test file in the `t` directory, a stub in the `lib` directory, and an example solution in the `.meta` directory. | ||
|
||
[csharp-implementing]: https://github.com/exercism/v3/blob/main/csharp/reference/implementing-a-concept-exercise.md | ||
Read more about concept exercises on Exercism's track building documentation: https://exercism.org/docs/building/tracks/concept-exercises | ||
|
||
[stories]: https://github.com/exercism/docs/tree/main/building/tracks/stories |