The following code is surprising me in two ways:
use strict;
use warnings;
use feature 'say';
use constant FL => 17,3,16;
use constant FL2 => 22,4,13;
my @row= "a".."z";
my @a = (" ") x 26;
@a[17,3,16] = @row[22,4,13];
say "@a";
@a = (" ") x 26;
@a[FL()] = @row[FL2];
say "@a";
It seems like constant folding isn't happening at all!!!
- I get a warning for FL2
Scalar value @row[FL2] better written as $row[FL2] (ignoring that its a constant _list_)
- Deparsing the code shows that FL and FL2 are called as functions
@a[FL()] = @row[FL2()];
Am I missing something?
(This is perl 5, version 16,)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.