Skip to content

Instantly share code, notes, and snippets.

View alonwillmakeit's full-sized avatar

Alon Hen alonwillmakeit

View GitHub Profile
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) =>