Skip to content

Instantly share code, notes, and snippets.

@clucasalcantara
Created July 7, 2017 17:07
Show Gist options
  • Save clucasalcantara/b350ed898ba033ac4be665fdef3b3f68 to your computer and use it in GitHub Desktop.
Save clucasalcantara/b350ed898ba033ac4be665fdef3b3f68 to your computer and use it in GitHub Desktop.
hello-world-curry
const greeting = greet => name => `${greet}, ${name}`;
const eae = greeting('Eae');
eae('World'); // Eae, World
eae('Catioríneo'); // Eae, Catioríneo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment