I have two functions. I need call one function and return a value, but then I want to call a second function. I cannot execute the function that returns nothing and then execute the second one for time issues
segunda <- function(){
number <- 0
........
}
primera <- function(msg){
return(paste(msg, " 1 "))
segunda()
}