kablamo / mvp.kablamo.org

Minimum Viable Perl
33 stars 15 forks source link

Functions page, last line is wrong #8

Closed Newexplorer closed 6 years ago

Newexplorer commented 6 years ago

my @flavors = get_cookie_flavors();

should be:

my @flavors = get_available_flavors();

naltun commented 6 years ago

Functions

sub get_available_flavors {
    return ("chocolate chip", "oatmeal raisin", "peanut butter");
}

my @flavors = get_cookie_flavors();
naltun commented 6 years ago

Made a PR at #9

kablamo commented 6 years ago

Merged! Thank you both.