add ./v2 to gitignore

pull/3142/head
Alexander Medvednikov 2019-12-17 01:21:10 +03:00
parent 6008fa44c6
commit 562f24336d
4 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@ fns.txt
*.dSYM
*_test
/v
/v2
/vprod
/v.c
/v.*.c

View File

@ -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

View File

@ -231,7 +231,7 @@ fn (a array) slice(start, _end int) array {
len: l
cap: l
}
return res
return res.clone()
}
// Private function. Used to implement assigment to the array element.