Help for this page

Select Code to Download


  1. or download this
      DB<104> dp @stuff = "This","That","Other"; 
    {
    ...
    {
        (@stuff = ('This', 'That', 'Other'));
    }
    
  2. or download this
      DB<111> sub list { "This","That","Other" }
     
      DB<112> @stuff = list()
     => ("This", "That", "Other")