Created
August 12, 2017 11:25
-
-
Save ddialar/f7609cd07a4645911ab7048af556bd28 to your computer and use it in GitHub Desktop.
This file contains 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
import * as calculator from './utils/calculator'; | |
const doASum = () => { | |
let a = 5; | |
let b = 10; | |
return calculator.sum(a, b); | |
}; | |
const doADif = () => { | |
let a = 5; | |
let b = 10; | |
return calculator.dif(a, b); | |
}; | |
export { | |
doASum, | |
doADif | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment