# Reduction triangle operator

    # Generate intermediate result of meta reduction as a list

    say [\+]  1, 2, 3, 4, 5;     # 1, 3, 6, 10, 15
    say [\~]  <hello -- world>;  # 'hello', 'hello--', 'hello--world'