string: add repeat() method

This commit is contained in:
Don Alfons Nisnoni 2019-09-27 03:54:53 +08:00 committed by Alexander Medvednikov
parent 9834ccfcd9
commit fb4f14ba76
2 changed files with 19 additions and 0 deletions

View file

@ -459,3 +459,8 @@ fn test_ustring_count() {
assert (a.count(''.ustring())) == 2
assert (a.count('a'.ustring())) == 0
}
fn test_repeat() {
s := 'V! '
assert s.repeat(5) == 'V! V! V! V! V! '
}