This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From thinkpeterson.com | |
| Tension Tool 120-30-4- Double Ended with a Twist TTB-2WT 1 | |
| Peterson Pry Bar - 0.050 Thick PPB 1 | |
| Hook 7 - Stainless 0.015 Slender H7-SS 2 | |
| Hook 1 - Stainless 0.015 Slender H1-SS 1 | |
| Hook 1 - Plastic Gov Steel H1-GSP 1 | |
| EAGLE SERIES Nylon EDC Case; 3.75 wide CO-3.75-NC 1 | |
| Hook 7 - Plastic Gov Steel H7-GSP 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * DERIVING THE Y COMBINATOR IN 7 EASY STEPS | |
| * | |
| * Ionut G. Stan | ionut.g.stan@gmail.com | http://igstan.ro | http://twitter.com/igstan | |
| * | |
| * | |
| * The Y combinator is a method of implementing recursion in a programming | |
| * language that does not support it natively (actually, it's used more for | |
| * exercising programming brains). The requirement is the language to support | |
| * anonymous functions. |