Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, September 4, 2019

Codecademy Learn R Conditionals 7/12


#Sample Solution
```{r}
message <- "I change based on a condition."
if(TRUE){
  message <- 'I execute this when true!'
} else{
  message <- 'I execute this when false!'
}
print(message)
```

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts