-- Chapter 18 example: multiplication table with numeric for. for i = 1, 10 do print("7 * " .. i .. " = " .. (7 * i)) end -- Try changing 7 to another number, or 1, 10 to a different range.