-- Homework 21, problem 3: Clamp. -- -- Define `local function clamp(x, lo, hi)` that returns lo if x < lo, -- hi if x > hi, and x otherwise. Test with three calls (one in -- range, one below, one above). -- -- Run with: lua exercises/21/homework/03-clamp.lua -- Your code goes here: