Last active
August 29, 2015 14:19
-
-
Save chikoski/2299dd43379dee0344fa 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
| function add(a, b){ | |
| return a + b; | |
| } | |
| function subtract(a, b){ | |
| return a - b; | |
| } | |
| function multiply(a, b){ | |
| return a * b; | |
| } | |
| function calc(a, b, c){ | |
| return 3 * a + 2 * b - c; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment