Created
June 16, 2016 08:48
-
-
Save Mizzlr/00e9c6d73d8b2e21d7b78b8c588ba0aa to your computer and use it in GitHub Desktop.
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
| // onTrue and onFalse are also some function | |
| var TRUE = function (onTrue) { | |
| return function (onFalse) { | |
| return onTrue(VOID); | |
| }; | |
| }; | |
| var FALSE = function (onTrue) { | |
| return function (onFalse) { | |
| return onFalse(VOID); | |
| }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment