# Meta reduction operator

    # Any infix operator can be placed between square brackets []

    say [+]  1, 2, 3, 4, 5;     # 1 + 2 + 3 + 4 + 5 = 15
    say [~]  <hello -- world>;  # hello--world