https://github.com/sidraval/rubycombinator
https://github.com/sidraval/rubycombinator
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sidraval/rubycombinator
- Owner: sidraval
- Created: 2013-11-20T14:29:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-20T14:29:51.000Z (over 11 years ago)
- Last Synced: 2025-05-14T07:56:08.547Z (about 2 months ago)
- Language: Ruby
- Size: 97.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Y Combinator in Ruby
An implementation of the Y combinator in Ruby. Lessons learned: We must use the applicative order Y combinator,
since Ruby apparently does not lazily evaluate its method calls -- the normal order Y combinator produces a
stack overflow error.