Thread Array::Utils: Wie Rückgabewert als Liste interpretieren
(34 answers)
Opened by mika at 2018-11-18 12:25
Also ich habe den Thread mal durch ...
Was spricht denn gegen: Code (perl): (dl
)
1 2 3 4 5 use List::MoreUtils qw(distinct); my @new = (1..4); my @old = (4..8); @new = distinct(@new, @old); print join(", ", @new); Funktioniert sicher auf Debian: Code: (dl
)
1 $ /usr/bin/perl -MList::MoreUtils=distinct -le '@new = (1..4); my @old = (4..8);; print join(", ", distinct(@new, @old));' |