Skip to content

Instantly share code, notes, and snippets.

@Sinha-Ujjawal
Created September 25, 2022 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sinha-Ujjawal/0465ddd37c4607332cc59bbd708c3db4 to your computer and use it in GitHub Desktop.
Save Sinha-Ujjawal/0465ddd37c4607332cc59bbd708c3db4 to your computer and use it in GitHub Desktop.
SK Combinators (Building blocks for all pure functions)
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