lamb/mods/std/basic.lamb

7 lines
215 B
Plaintext
Raw Permalink Normal View History

2014-02-11 12:55:40 +00:00
-- 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)).