Created
September 18, 2016 03:14
-
-
Save don-smith/4baa0f45c4aebb8418313146c4b37227 to your computer and use it in GitHub Desktop.
Some code for an EDA advertisement. It has been superimposed onto the foam of a latte.
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
| #!/usr/bin/env node | |
| const ids = [4, 9, 1], | |
| o = 'caffeine drink', | |
| e = (r='', n=0) => ids[n] ? | |
| e(r + o[ids[n]], ++n) : r | |
| console.info(e()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment