in reply to Modification of read-only value error
The error is from attempting to modify $_[0] when the argument is a string literal, $rollup->(" ") rather than a variable $rollup->($dummy). The string literal is a constant, not an lvalue.
After Compline,
Zaxo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Modification of read-only value error when using closure
by sk (Curate) on Aug 24, 2005 at 05:12 UTC |