[lang-ref] ( init_array ) ( python )

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

    assert type(items) is list
    assert len(items) == 3