-- Homework 23, problem 2: Inventory weights. -- -- Sum every weight in the `inventory` dictionary and print: -- Total weight: -- -- Run with: lua exercises/23/homework/02-inventory-weights.lua local inventory = { sword = 3.5, shield = 5.0, potion = 0.2, map = 0.1, coins = 0.05, } -- Your code goes here: