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
const add = (a, b) => a + b | |
const sub = (a, b) => a - b | |
const div = (a, b) => a / b | |
const mul = (a, b) => a * b | |
const print = (add, sub, div, mul) => |