IHATETHEDEMONKAHL/src/main.c

31 lines
1.5 KiB
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int main() {
printf("[?25l[?7l _\n");
printf(" (_)\n");
printf(" | .\n");
printf(" . |L /| .  _\n");
printf(" _ . |\\ _| \\--+._/| . (_)\n");
printf(" / ||\\| Y J ) / |/| ./\n");
printf(" J |)'( | ` F`.'/  _\n");
printf(" -<| F __ .-< (_)\n");
printf(" | / .-'. `. /-. L___\n");
printf(" J \\ < \\  | | O\\|.-'  _\n");
printf(" _J \\ .- \\/ O | | \\ |F (_)\n");
printf(" '-F -<_. \\ .-' `-' L__\n");
printf("__J _ _. >-' )._. |-'\n");
printf(" `-|.' /_. \\_|  F\n");
printf(" /.- . _.<\n");
printf(" /' /.' .' `\\\n");
printf(" /L /' |/ _.-'-\\\n");
printf(" /'J ___.---'\\|\n");
printf(" |\\ .--' V | `. `\n");
printf(" |/`. `-. `._)\n");
printf(" / .-.\\\n");
printf(" \\ ( `\\\n");
printf(" `.\\\n");
printf("I HATE THE DEMON KAHL!\n");
printf("[?25h[?7h");
return 0;
}