Skip to content

Instantly share code, notes, and snippets.

@shanecelis
Created November 28, 2013 08:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanecelis/7688664 to your computer and use it in GitHub Desktop.
Save shanecelis/7688664 to your computer and use it in GitHub Desktop.
The Y-combinator in dogescript http://zachbruggeman.me/dogescript/
such combinator much lambda
quiet
Y = λf.(λx.f (x x)) (λx.f (x x))
loud
such y much f
very a is plz f with f
wow a
such x much f
such z with x
very b is plz f with f
very c is plz b with x
wow c
very d is plz lambda with z
wow d
very e is plz y with x
wow e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment