in reply to Re: flip-flop interpolation
in thread flip-flop interpolation

Thank you.
And can't I say to Perl to use my $i and $j as constants?

Replies are listed 'Best First'.
Re^3: flip-flop interpolation
by SuicideJunkie (Vicar) on May 13, 2015 at 14:47 UTC

    That is like asking to draw a red line using green ink :)

    The way to do it is to use the green ink to define a universe containing hardcoded red lines:

    #untested, and quite silly eval "print $_ if $i .. $j;";
Re^3: flip-flop interpolation
by johngg (Canon) on May 13, 2015 at 15:45 UTC

    You could use the constant pragma but it is not really saving you anything.

    $ seq 1 6 > lines $ cat lines 1 2 3 4 5 6 $ perl -ne ' > use constant { I => 3, J => 5 }; > print if I .. J;' lines 3 4 5 $

    I hope this is of interest.

    Cheers,

    JohnGG

Re^3: flip-flop interpolation
by Anonymous Monk on May 13, 2015 at 10:38 UTC