in reply to Thx, St. Larry, for the Beauty of Sigils
Many Python people just hate everybody who questions a little bit of their language. I think it's also due to the fact that many learn Python as first language and have problems accepting TIMTOWTDI.
The other problem is the frustrating learn curve of Perl, because we have a list form and a ref form of an array.
DB<2> $a = [A..Z] DB<3> @a = (a..z) DB<4> x $a[0], $a->[0] 0 'a' 1 'A'
That has many advantages but makes the syntax confusing.
I'd personally like to have any new syntax or pragma to "alias" $a and @a together at declaration time, such that I could write
my $a[]; #=> @a := @$a $a = [A..Z]; print "@a"; # A B C ... print $a[0]; # A
thus avoiding \ and -> in many cases.
The downside would be to loose the advantages of separate namespaces, but they are rarely used.
Though I don't know how to implement it or if it's even possible, without braking old code.
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
FootballPerl is like chess, only without the dice
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Thx, St. Larry, for the Beauty of Sigils
by shmem (Chancellor) on Jul 27, 2019 at 13:56 UTC | |
by LanX (Saint) on Jul 27, 2019 at 14:28 UTC | |
by shmem (Chancellor) on Jul 27, 2019 at 14:31 UTC | |
by LanX (Saint) on Jul 27, 2019 at 14:32 UTC | |
by shmem (Chancellor) on Jul 27, 2019 at 14:35 UTC | |
| |
|
Re^2: Thx, St. Larry, for the Beauty of Sigils
by dsheroh (Monsignor) on Jul 27, 2019 at 07:34 UTC | |
by LanX (Saint) on Jul 27, 2019 at 14:51 UTC | |
|
Re^2: Thx, St. Larry, for the Beauty of Sigils
by Jenda (Abbot) on Jul 27, 2019 at 21:11 UTC |