Skip to content

Instantly share code, notes, and snippets.

@downloadpizza
Created December 16, 2019 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save downloadpizza/f1636885331f94ad2e5b34d8cd97b701 to your computer and use it in GitHub Desktop.
Save downloadpizza/f1636885331f94ad2e5b34d8cd97b701 to your computer and use it in GitHub Desktop.
Have I ever told you the tragedy of yoshikage kira the wise?
#include<stdio.h>
int main(void) {
char* copypasta = "\
My name is Yoshikage Kira. I'm 33 years old. My house is in the northeast section of Morioh, where all the villas are, and I am not married. I work as an employee for the Kame Yu department stores, and I get home every day by 8 PM at the latest. I don't smoke, but I occasionally drink.\n\
I'm in bed by 11 PM, and make sure I get eight hours of sleep, no matter what. After having a glass of warm milk and doing about twenty minutes of stretches before going to bed, I usually have no problems sleeping until morning. Just like a baby, I wake up without any fatigue or stress in the morning. I was told there were no issues at my last check-up.\n\
I'm trying to explain that I'm a person who wishes to live a very quiet life. I take care not to trouble myself with any enemies, like winning and losing, that would cause me to lose sleep at night. That is how I deal with society, and I know that is what brings me happiness. Although, if I were to fight I wouldn't lose to anyone.";
puts(copypasta);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment