Create gen.c

This commit is contained in:
Anthony Wang 2020-06-08 21:32:36 -05:00 committed by GitHub
parent ba40d4b3a4
commit e145624a2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
gen.c Normal file
View file

@ -0,0 +1,14 @@
/*
______
/ ____/
/ /
/ /___
\____/
73 characters
Usage:
gcc gen.c -o gen
gen [KEY] [SITE]
*/
int i;main(int c,char**v){printf(v[1]);for(;i<4;++i)putchar(v[2][i]^37);}