Help for this page

Select Code to Download


  1. or download this
        infix:«+»
        infix:<<+>>
        infix:{'+'}
    
  2. or download this
        my &plus_op_subref = &infix:«+»;
        my &not_op_subref  = &prefix:«!»;
    
        say plus_op_subref(3, 2); # 5