Skip to content

Instantly share code, notes, and snippets.

@don-smith
Created September 18, 2016 03:14
Show Gist options
  • Select an option

  • Save don-smith/4baa0f45c4aebb8418313146c4b37227 to your computer and use it in GitHub Desktop.

Select an option

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.
#!/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