E3002 Types Errors

Types

this operator does not work on this type; for example, strings cannot be subtracted

When this occurs

`"hello" * "world"`

Example error message

error[E3002]: unknown operator: STRING * STRING

How to fix

Use an operator that is valid for this type. For example, you cannot use `*` on strings.

Related errors