// the order matches node's order of exports. export const add = 1 + 2 + 3; export const divide = 1 / 2 / 3; export const modulo_3_2 = 3 % 2; export const modulo_4_2 = 4 % 2; export const multiply = 1 * 2 * 3; export const subtract = 1 - 2 - 3;