[lang-ref] ( init_list ) ( python )

def test_init_list():
    # [ .. ]
    items = [1, 2, 3]

    assert isinstance(items, list)
    assert len(items) == 3