Skip to content

Instantly share code, notes, and snippets.

@victorvhpg
Created November 12, 2016 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorvhpg/1f37721a1213abb2c43a1a4e42e8b2fc to your computer and use it in GitHub Desktop.
Save victorvhpg/1f37721a1213abb2c43a1a4e42e8b2fc to your computer and use it in GitHub Desktop.
export default function(a, b){
return a+b;
}
//ou
function soma(a, b){
return a + b;
}
export default soma;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment