-- Homework 25, problem 1: finish this greet module. -- -- Expose two functions on M: -- M.hello(name) -- prints "Hello, !" -- M.bye(name) -- prints "Goodbye, ." -- -- End the file with `return M`. local M = {} -- Your functions go here: -- TODO: return M