|
Line 15 of example contains:
my %attribs = odm_attributes(${dev{'devname'}};
There is a missing right curly bracket, the line should look like:
my %attribs = odm_attributes(${dev{'devname'}});
But when fixed like this, perl says that it can't modify exit in scala assignment.
Any idea? |