Skip to content

Instantly share code, notes, and snippets.

@akey7
Created May 15, 2020 02:21
Show Gist options
  • Save akey7/1e30c2560498b4427d3a17c02a190c69 to your computer and use it in GitHub Desktop.
Save akey7/1e30c2560498b4427d3a17c02a190c69 to your computer and use it in GitHub Desktop.
Fizz Buzz in R
for (i in 1:20) {
if (i %% 3 == 0) print("Fizz")
else if (i %% 5 == 0) print("Buzz")
else print(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment