-- Homework 26, problem 1: Counter object. -- -- Build a `counter` table with: -- counter.count -- starts at 0 -- counter:inc() -- adds 1 -- counter:get() -- returns the current count -- counter:reset() -- sets count back to 0 -- -- Call them in sequence and print the value at each step. -- -- Run with: lua exercises/26/homework/01-counter-object.lua -- Your code goes here: