#include <stdio.h>
#include <stdbool.h>

typedef struct CommiCoq {
  bool butthurt;
} CommiCoq;

int main() {
  struct CommiCoq * coq = &(struct CommiCoq) { .butthurt = true };
  printf("Is commi coq has butthurt? %s\n", coq->butthurt ? "yes" : "yes");
  return 0;
}
