mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
153 B
V
12 lines
153 B
V
module strings
|
|
|
|
pub fn repeat(c byte, n int) string {
|
|
if n <= 0 {
|
|
return ''
|
|
}
|
|
mut arr := [c].repeat(n + 1)
|
|
arr[n] = `\0`
|
|
return string(arr, n)
|
|
}
|
|
|