Created
November 12, 2016 10:01
-
-
Save victorvhpg/1f37721a1213abb2c43a1a4e42e8b2fc 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
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