Mentioning of the error() keyword

I just worked through the triangles practice problem, while working through Lua Concepts boolean: Triangle in Lua on Exercism

This exercise necessitates the use of the error() keyword, something which wasn’t mentioned before. I personally suggest adding a hint for this, as newer programers might not even be aware that something like this could exist if they come from a language where errors are values.

You could also use assert() for raising errors.

I tested it and it works. I edited my Pull Request to also mention assert.