Thread smartmatch stupid (18 answers)
Opened by linuxCowboy at 2014-01-29 18:50

linuxCowboy
 2014-01-29 18:50
#173286 #173286
User since
2014-01-29
30 Artikel
BenutzerIn
[default_avatar]
Hallo ins Perl-Forum!

dieses matched nicht:
Code (perl): (dl )
1
2
 $ perl -we'use strict;my @a=1..9;say "ok" if (@a ~~ 3)'
 $ 

dieses aber schon:
Code (perl): (dl )
1
2
 $ perl -we'use strict;my @a=1..9;say "ok" if (3 ~~ @a)'
ok

sowohl bei 5.10.1 als auch 5.14.2 unter Linux.

Kann das jemand erklären?
Last edited: 2014-01-29 19:11:24 +0100 (CET)

View full thread smartmatch stupid