[lang-ref] ( array_max ) ( python )

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

    r = max(items)

    assert r == 90