Last active
December 9, 2021 01:36
-
-
Save spinkney/b1969041e4aa43af107b37cc32185693 to your computer and use it in GitHub Desktop.
zodic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zodiac <- function(year) { | |
element <- structure(rep(c("Metal", "Water", "Wood", "Fire", "Earth"), each = 2), | |
.Names = 0:9 | |
) | |
sign <- structure(c( | |
"Monkey", "Rooster", "Dog", "Pig", "Rat", | |
"Ox", "Tiger", "Rabbit", "Dragon", | |
"Snake", "Horse", "Goat" | |
), | |
.Names = 0:11) | |
z_r <- year %% 12 + 1 | |
s_r <- year %% 10 + 1 | |
paste0("You are a ", element[s_r], " ", sign[z_r], "!") | |
} | |
zodiac(2000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment