Reports v2 FeaturePeek
Created on January 15|Last edited on January 15
Comment
You miss 100% of the shots you don't take. -- Wayne Gretsky -- Michael Scott
Turning and turning in the widening gyre
The falcon cannot hear the falconer;
Things fall apart; the centre cannot hold;
- Mere anarchy is loosed upon the world
- The blood-dimmed tide is loosed
- Everywhere the ceremony of innocence is drowned;
- The best lack all conviction
- The worst are full of passionate intensity
- shit is fucked yo
def fizzbuzz(k):if not k % 3:print("fizz")if not k % 5:print("buzz")
Add a comment