[lang-ref] ( init_empty_array ) ( python )
def test_init_empty_array():
# []
items = []
assert type(items) is list
assert len(items) == 0
def test_init_empty_array():
# []
items = []
assert type(items) is list
assert len(items) == 0