v/vlib/strings/strings.v
Alexander Medvednikov 6210984c97 run vfmt
2019-12-20 02:09:56 +03:00

11 lines
152 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)
}