6 lines
215 B
Text
6 lines
215 B
Text
-- Standard basic library for the Lamb programming language
|
|
-- Copyright (c) 2013 darkf
|
|
-- Licensed under the terms of the zlib license, see LICENSE for details
|
|
|
|
const(x) -> \_ -> x.
|
|
compose(f, g) -> \x -> f(g(x)).
|