1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

Fixed typo in sample output

This commit is contained in:
Jonathan
2020-03-13 21:25:57 -04:00
committed by GitHub
parent 8bacbc2d2f
commit 9bf06f1484

View File

@@ -769,7 +769,7 @@ sub unpack_array( @array [$fst, $snd] ) {
# (^ remember the `[]` to interpolate the array) # (^ remember the `[]` to interpolate the array)
} }
unpack_array(@tail); unpack_array(@tail);
# OUTPUT: «My first is 3, my second is 3! All in all, I'm 2 3.␤» # OUTPUT: «My first is 2, my second is 3! All in all, I'm 2 3.␤»
# If you're not using the array itself, you can also keep it anonymous, # If you're not using the array itself, you can also keep it anonymous,
# much like a scalar: # much like a scalar: