wektor z n równymi wpisami r

//USAGE 
vector <- rep(value, N)

//EXAMPLE: Vector of 3 entries with value 0
exampleList <- rep(0, 3)
exampleList[2] <- exampleList[2] + 13
exampleList
/*OUT: 
exampleList
[1] 0 13 0
*/
DeliaBlue