diff options
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1,5 +1,17 @@ - $10, $11, ... +- syntax error on sub (can|cmp|isa|print|use) () {} + +- sprintf("%s %.2f", ...) + +- use 5.008_000; + +- missing hint ("you can replace "any { $_ eq ... } @l" with "member(..., @l)") + for: + if (!any { $_url eq $_ } @urls) { + OK for: + if (!any { $_ eq $url } @urls) { + - # perl_checker: use lib qw(/some/dir) - # perl_checker: use foobar |