[lang-ref] ( string_concat ) ( python )

def test_string_concat():
    # s1 + s2
    s1 = 'abc'
    s2 = 'def'
    s = s1 + s2
    assert s == 'abcdef'