added documentation on * operator for strings (#930)

This commit is contained in:
maze
2021-02-19 13:16:09 +10:00
committed by GitHub
parent 208bbc02a5
commit 2bc895c26d

View File

@ -246,6 +246,12 @@ Returns a new string that concatenates this string and `other`.
It is a runtime error if `other` is not a string.
### *****(count) operator
Returns a new string that contains this string repeated `count` times.
It is a runtime error if `count` is not a positive integer.
### **==**(other) operator
Checks if the string is equal to `other`.