mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
10 lines
137 B
V
10 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))
|
|
}
|