1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/strings/strings.v

12 lines
153 B
V
Raw Normal View History

2019-09-14 23:48:30 +03:00
module strings
pub fn repeat(c byte, n int) string {
if n <= 0 {
return ''
}
2019-09-25 22:08:07 +03:00
mut arr := [c].repeat(n + 1)
arr[n] = `\0`
2019-07-21 13:22:41 +03:00
return string(arr, n)
}