in reply to Re: Re: What is the difference between a list and an array?
in thread What is the difference between a list and an array?

List is something which is nothing but a group of scalar variables separated by comma(,). In order to use the list in PERL, we need to declare it in an array variable, prefixed by "@", or a hash variable prefixed by "%".
  • Comment on Re^3: What is the difference between a list and an array?