Ok, I’ve seen this before and I guffaw loudly every single time.
Cwtch is defined as:
// Define the emotional states
#define WARMTH 100
#define SECURITY 100
typedef struct {
int stress_level;
int happiness;
} Person;
Person cwtch(Person person1, Person person2) {
person1.stress_level -= 50;
person2.stress_level -= 50;
person1.happiness += WARMTH;
person2.happiness += SECURITY;
printf("A warm Welsh cwtch has been executed successfully.\n");
// Returns the newly bonded, relaxed duo
return person1;
😆
