E10001 String Errors

repeat-count-negative

repeat count cannot be negative

When this occurs

`strings.repeat(str, -1)`

Example error message

error[E10001]: strings.repeat() count cannot be negative

How to fix

Pass a non-negative integer as the repeat count.

Related errors