[lang-ref] ( string_append ) ( python )

def test_string_append():
    s1 = 'abc'
    s2 = 'def'
    s1 += s2
    assert s1 == 'abcdef'