-- Homework 11, problem 3: Rename and reassign. -- -- The three variables below have unhelpful names. Their VALUES hint -- at what they really are. Your job: -- 1. Rename each to something meaningful. -- 2. Print all three with labels. -- 3. Change each variable to a new value (no `local` this time). -- 4. Print all three again. -- -- Run with: lua exercises/11/homework/03-rename-and-reassign.lua local a = "Sword of Light" local b = 12 local c = true -- Your code goes here: