-
Notifications
You must be signed in to change notification settings - Fork 0
/
colme.c
22 lines (18 loc) · 841 Bytes
/
colme.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <stdlib.h>
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_YELLOW "\x1b[33m"
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_MAGENTA "\x1b[35m"
#define ANSI_COLOR_CYAN "\x1b[36m"
#define ANSI_COLOR_RESET "\x1b[0m"
int main (int argc, char const *argv[]) {
printf(ANSI_COLOR_RED "Ian Martin Ajzenszmidt" ANSI_COLOR_RESET "\n");
printf(ANSI_COLOR_GREEN "Ian Martin Ajzenszmidt" ANSI_COLOR_RESET "\n");
printf(ANSI_COLOR_YELLOW "Ian Martin Ajzenszmidt" ANSI_COLOR_RESET "\n");
printf(ANSI_COLOR_BLUE "Ian Martin Ajzenszmidt!" ANSI_COLOR_RESET "\n");
printf(ANSI_COLOR_MAGENTA "Ian Martin Ajzenszmidt" ANSI_COLOR_RESET "\n");
printf(ANSI_COLOR_CYAN "Ian Martin Ajzenszmidt!" ANSI_COLOR_RESET "\n");
return 0;
}