What will this conditional expression return?
x <- c(1,2,-3,4) if(all(x>0)){ print("All positives") } else{ print("Not all positives") }
Write down your answer (as a string of characters) in the terminal and pay attention to captalization!