[lang-ref] ( lambda ) ( python )

def test_lambda():
    # lambda a, b: a + b
    f = lambda a, b: a + b

    r = f(3, 5)

    assert r == 8