삶에서 궁극적인 자유를 위한 기술 문서
발행: (2026년 1월 13일 오전 02:38 GMT+9)
2 분 소요
원문: Dev.to
Source: Dev.to

자유
소프트웨어 개발자를 위한 삶의 자유에 대한 기술 문서 :)
C에서의 기본 인간 행동
#include
#include
#include
#include
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
if (anger_event) {
printf("Show anger.\n");
} else {
printf("All is calm.\n");
}
return 0;
}
명상을 한 뒤 업그레이드된 인간 행동
명상을 실천하면서 생각이 들어오게 두되, 그것을 처리할지 여부를 스스로 결정합니다; 이렇게 하면 시간이 지남에 따라 틈(자유)이 생깁니다.
#include
#include
#include
#include
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
bool conscious_choice = !anger_event; // ← 이것이 자유입니다
if (anger_event && conscious_choice) {
printf("Show anger.\n");
} else {
printf("All is calm.\n");
}
return 0;
}
