Subject: | HR::Skills should be HR::Skill |
in the Quickstart docs, there is:
HR::Skills->insert({skill_code => "VL", skill_name => "Violin" },
{skill_code => "KB", skill_name => "Keyboard"},
{skill_code => "GT", skill_name => "Guitar"},
There are 2 problems with this:
1) the package is HR::Skill, not HR::Skills
2) the insert() expression ends with a comma, not a close parenthesis
and a semicolon.