diff options
author | loshprung <lshprung@scu.edu> | 2020-01-08 12:32:26 -0800 |
---|---|---|
committer | loshprung <lshprung@scu.edu> | 2020-01-08 12:32:26 -0800 |
commit | 13cb458c7b5338b386d6a95f12b20f40f876b443 (patch) | |
tree | 4072e43a10d9b6bd3ec6890024aada74fe668020 /color_test.c | |
parent | ff6bd0501b044298c03ca463fc69234381414ee3 (diff) |
deleted unnecesary files
Diffstat (limited to 'color_test.c')
-rw-r--r-- | color_test.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/color_test.c b/color_test.c deleted file mode 100644 index 60b0b93..0000000 --- a/color_test.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <stdio.h> - -int main(){ - printf("\033[0;31m"); - printf("Red\n"); - printf("\033[1;31m"); - printf("Bold Red\n"); - printf("\033[0;32m"); - printf("Green\n"); - printf("\033[1;32m"); - printf("Bold Green\n"); - printf("\033[0;30m"); - printf("\033[47m"); - printf("???\n"); - - return 0; -} |