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

12 lines
275 B
Raku
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# List
my @list := 1,2,3;
my @newlist := |@list, 4,5,6; # |@list will slip @list into the surrounding list instead of creating a list of lists
# Set
my $set = set <a b c>;
my $newset = $set <d e f>;
# Bag
my $bag = bag <b a k l a v a>;
my $newbag = $bag <b e e f>;