[lang-ref] ( list_min ) ( python )

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

    r = min(items)

    assert r == 10