RosettaCodeData/Task/Collections/Perl-6/collections-2.pl6

12 lines
275 B
Raku
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
# List
my @list := 1,2,3;
2015-11-18 06:14:39 +00:00
my @newlist := |@list, 4,5,6; # |@list will slip @list into the surrounding list instead of creating a list of lists
2013-10-27 22:24:23 +00:00
# Set
my $set = set <a b c>;
my $newset = $set <d e f>;
# Bag
my $bag = bag <b a k l a v a>;
2015-11-18 06:14:39 +00:00
my $newbag = $bag <b e e f>;