enable lexical subs before perl v5.26
[barcat.git] / graph
diff --git a/graph b/graph
index e76ec645492b138a49ddfb11a52f1adf2e4b2088..307c9e41d47bfc031ad0e897ee120d4c9c3a19f4 100755 (executable)
--- a/graph
+++ b/graph
@@ -1,9 +1,10 @@
 #!/usr/bin/env perl
-use 5.014;
+use 5.018;
 use warnings;
 use utf8;
 use List::Util qw( min max sum );
 use open qw( :std :utf8 );
+use experimental qw( lexical_subs );
 
 our $VERSION = '1.02';
 
@@ -53,13 +54,13 @@ while (readline) {
        }
        push @lines, $_;
 }
-@lines or exit;
 
 $SIG{INT} = 'DEFAULT';
 
 sub show_lines {
 
 state $nr = 0;
+@lines and @lines > $nr or return;
 
 my @order  = sort { $b <=> $a } grep { length } @values;
 my $maxval = $order[0];