mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
9 lines
137 B
V
9 lines
137 B
V
module builtin
|
|
|
|
pub struct string {
|
|
str JS.String
|
|
}
|
|
|
|
pub fn (s string) slice(a int, b int) string {
|
|
return string(s.str.slice(a, b))
|
|
}
|