Perl Exercise 1
 

Assignment

Write a Perl subroutine named unique that will accept a list as an argument, and return a list of all the unique items in the original list.



Output of your program:
1, 2, 3, 4, 5, 6 (any order of numbers is fine)