Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 6, 2020 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/1512b7c0d7555df8a10d5482aaf540ca to your computer and use it in GitHub Desktop.
Save codecademydev/1512b7c0d7555df8a10d5482aaf540ca to your computer and use it in GitHub Desktop.
Codecademy export
```{r}
message <- "I change based on a condition."
x <- 5
y <- 4
if (x < y) {
message <- 'I execute this when true!'
} else {
message <- 'I execute this when false!'
}
print(message)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment