Skip to content

Instantly share code, notes, and snippets.

@ryu1-1uyr
Created April 3, 2019 07:52
Show Gist options
  • Save ryu1-1uyr/ed63d90dd57f48380f25e874e4fbf97d to your computer and use it in GitHub Desktop.
Save ryu1-1uyr/ed63d90dd57f48380f25e874e4fbf97d to your computer and use it in GitHub Desktop.
ドヤ顔,10じゃなくてもいける
(f => (g => m => (f(g(g))(m)))
(g => m => (f(g(g))(m))))
(f => (n => ((n <= 2) ? 1 : (f(n-1) + f(n-2)) ) ))(10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment