Created
December 28, 2017 23:09
-
-
Save MavenOfCode/61c5a45b57e78ec09bb07fb0cdae17e5 to your computer and use it in GitHub Desktop.
This file contains 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
fill(0, 0, 0); | |
ellipse(200, 200, 375, 375); | |
fill(60, 0, 255); | |
triangle(200, 104, 280, 280, 120, 280); | |
fill(255, 255, 255); | |
var answer = floor(random(1, 6)); | |
if (answer===1) { | |
text("NOT YET", 176, 200); | |
} | |
else if (answer===2){ | |
text("ASK AGAIN", 159, 229); | |
} | |
else if (answer===3){ | |
text("DEFINTELY", 159, 229); | |
} | |
else if (answer===4){ | |
text("UNCLEAR", 159, 229); | |
} | |
if (answer ===5){ | |
text("FOR SURE", 159, 229); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment