Skip to content

Instantly share code, notes, and snippets.

@hisui
Last active December 16, 2015 23:49
Show Gist options
  • Save hisui/5516434 to your computer and use it in GitHub Desktop.
Save hisui/5516434 to your computer and use it in GitHub Desktop.
memo
I x -> x
K c x -> c
S f g x -> f x (g x)
S' c f g x -> c (f x) (g x)
C f g x -> f x g
C' c f g x -> c (f x) g
B f g x -> f (g x)
B' c f g x -> c f (g x)
B* c f g x -> c (f (g x))
J f g x -> f g
J' k f g x -> k f g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment