[lang-ref] ( arithmetic_operator_plus ) ( python )

def test_arithmetic_operator_plus():
    # +
    assert 1 + 2 == 3
    assert 'a' + 'b' == 'ab'