export const addInt = x => y => x + y; export const mulInt = x => y => x * y; export const eqInt = x => y => x === y;