Created
September 25, 2022 07:47
-
-
Save Sinha-Ujjawal/0465ddd37c4607332cc59bbd708c3db4 to your computer and use it in GitHub Desktop.
SK Combinators (Building blocks for all pure functions)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
S = lambda f: lambda g: lambda x: f(x)(g(x)) | |
K = lambda x: lambda y: x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment