-- Homework 25, problem 2: build this math_helpers module. -- -- Expose at least: -- M.double(x) -- returns x * 2 -- M.triple(x) -- returns x * 3 -- -- End the file with `return M`. local M = {} -- Your functions go here: -- TODO: return M