exercism / perl5

Exercism exercises in Perl 5.
https://exercism.org/tracks/perl5
MIT License
28 stars 51 forks source link

[v3] Implement new Concept Exercise: basics #373

Closed m-dango closed 1 year ago

m-dango commented 4 years ago

This issue describes how to implement the basics concept exercise for the Perl track.

Getting started

Please please please read the docs before starting. Posting PRs without reading these docs will be a lot more frustrating for you during the review cycle, and exhaust Exercism's maintainers' time. So, before diving into the implementation, please read up on the following documents:

Please also watch the following video:

Goal

This exercise should teach the bare minimum to help students understand Perl programs.

Learning objectives

Out of scope

Concepts

Prerequisites

N/A

Resources to refer to

https://perldoc.perl.org/perlintro

Representer

Analyzer

Implementing

Help

If you have any questions while implementing the exercise, please post the questions as comments in this issue.

m-dango commented 4 years ago

I've excluded subroutine arguments from basics as I think having an arrays/lists exercise should probably come before introducing e.g. my $self = shift / my ($self) = @_