in reply to Re^7: Breaking issue
in thread Breaking issue
we can writeif (complicated == condition) { do something with the same complicated == condition }
or shorter, similiar to your code:$value = complicated == condition; if ($value) { do something with the same $value }
so that one doesn't need parse the complicated == condition again to see that it's the same in both places. But in your example that would be pointless because what I dubbed "complicated == condition" is just a single value which seems to remain unchanged.if ($value = complicated == condition) { do something with the same $value }
And now for something completely different: In the OP, you mentioned a library. Have you heard about / looked into Koha, an open source LMS written in Perl?
|
|---|