Sorry for the inexperience, I\'m a beginning coder in R For example: If I were to make a FOR loop by chance and I have a collection of integers 1 to 100 (1:100), what would
How's this?
x <- 1:100 div_5 <- function(x) x[x %% 5 == 0] div_5(x)