λ-Calculus

#(f) => {
    #(x) => {
       == f(x) ==> 
    }
}
(lambda (f) 
    (lambda (x) 
        (f x)
    )
)

Last updated