[lang-ref] ( arithmetic_operator_add ) ( python )

def test_arithmetic_operator_add():
    # +
    assert 1 + 2 == 3

    # if string, concat
    assert 'a' + 'b' == 'ab'