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

JavaSript backend (early stage)

This commit is contained in:
Alexander Medvednikov
2019-09-14 23:48:30 +03:00
parent 982a162fbf
commit 5cc81b91cb
31 changed files with 1818 additions and 584 deletions

View File

@ -1,11 +1,11 @@
module strings
module strings
pub fn repeat(c byte, n int) string {
if n <= 0 {
return ''
}
mut arr := malloc(n + 1)
//mut arr := [byte(0); n + 1]
//mut arr := malloc(n + 1)
mut arr := [byte(0)].repeat2(n + 1)
for i := 0; i < n; i++ {
arr[i] = c
}