Last active
August 25, 2020 18:13
-
-
Save rors/9553e0639831c005e9e124f4d13618d3 to your computer and use it in GitHub Desktop.
RS Test
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
import random | |
print("hello, rorys!") | |
if random.random() < .5: | |
print("hi!") | |
else: | |
print("bye!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's great!!