add ./v2 to gitignore
parent
6008fa44c6
commit
562f24336d
|
@ -2,6 +2,7 @@ fns.txt
|
||||||
*.dSYM
|
*.dSYM
|
||||||
*_test
|
*_test
|
||||||
/v
|
/v
|
||||||
|
/v2
|
||||||
/vprod
|
/vprod
|
||||||
/v.c
|
/v.c
|
||||||
/v.*.c
|
/v.*.c
|
||||||
|
|
|
@ -383,7 +383,7 @@ pub fn (app mut App) articles() {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
To be continued on Dec 14...
|
To be continued...
|
||||||
|
|
||||||
For an example of a more sophisticated web app written in V, check out Vorum: https://github.com/vlang/vorum
|
For an example of a more sophisticated web app written in V, check out Vorum: https://github.com/vlang/vorum
|
||||||
|
|
||||||
|
|
|
@ -231,7 +231,7 @@ fn (a array) slice(start, _end int) array {
|
||||||
len: l
|
len: l
|
||||||
cap: l
|
cap: l
|
||||||
}
|
}
|
||||||
return res
|
return res.clone()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Private function. Used to implement assigment to the array element.
|
// Private function. Used to implement assigment to the array element.
|
||||||
|
|
Loading…
Reference in New Issue