mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 21:58:48 +01:00
added documentation on * operator for strings (#930)
This commit is contained in:
@ -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`.
|
||||
|
||||
Reference in New Issue
Block a user