[lang-ref] ( array_min ) ( python )

def test_array_min():
    # min
    items = [30, 40, 80, 20, 90, 10]

    r = min(items)

    assert r == 10