14 lines
253 B
C
Raw Normal View History

2025-01-07 15:07:12 +01:00
#define RED 1
#define GREEN 2
#define BLUE 4
2024-12-10 12:52:05 +01:00
int hue(void) {
int choice = rand()%3;
if (choice == 0) {
return RED;
} else if (choice == 1) {
return GREEN;
} else /* if (choice == 2) */ {
return BLUE;
}
}