On 11/23/2017 06:09 PM, Brandon Allbery wrote:
On Thu, Nov 23, 2017 at 9:06 PM, ToddAndMargo <toddandma...@zoho.com <mailto:toddandma...@zoho.com>> wrote:On 11/22/2017 08:41 PM, Norman Gaywood wrote: my Set $take1 = (%all (-) %remove) (-) %excludes; What does "Set" do in the above?Declares a type, which helps avoid errors. Similarly `my Int $a` means $a can only take Int values.
That explains it. Pre-declared. Thank you!