Hyper Operators

Used to perform an operation per element of an array
This is similar to a loop that takes elements 0 from @a and @b, adds them and puts the result in element 0 of @c.
my @c = @a >>+<< @b;
Gives permission for the operation on different elements to be parallelized.
Good for the Concurrent Future
Type :next to continue