summaryrefslogtreecommitdiffhomepage
path: root/perl6.html.markdown
diff options
context:
space:
mode:
authorjmaud <maudlin.johnathan@gmail.com>2014-10-15 11:34:50 -0400
committerjmaud <maudlin.johnathan@gmail.com>2014-10-15 11:34:50 -0400
commitfe277959606857f2690b4d6dd224fffc6a550d34 (patch)
tree1f4fe866661f06bae6f5fcc702b9450da32e9627 /perl6.html.markdown
parent54835f209475cf6ace7fcd7fab8140ecedcec340 (diff)
parentbc6a21835f862a4c8b386fce48aebd2cdd1a5232 (diff)
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Merge changes
Diffstat (limited to 'perl6.html.markdown')
-rw-r--r--perl6.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl6.html.markdown b/perl6.html.markdown
index ee27ff42..52625bc2 100644
--- a/perl6.html.markdown
+++ b/perl6.html.markdown
@@ -64,7 +64,7 @@ say "Interpolate an array using [] : @array[]";
my @keys = 0, 2;
@array[@keys] = @letters; # Assign using an array
-say @array; #=> a 2 b
+say @array; #=> a 6 b
# There are two more kinds of lists: Parcel and Arrays.
# Parcels are immutable lists (you can't modify a list that's not assigned).