손에 손 잡고, 벽을 넘어서

보시기에 좋았더라

### 주요 코드 흐름 

```java
// 메인 실행 + Day 열거형 + Creator.create() 로직을 한눈에
Creator creator = new Creator();
for (Day day : Day.values()) {

    // Day 열거형의 선포(decree)
    // ONE   → "Let there be light"
    // TWO   → "Let there be sky separating the waters"
    // THREE → "Let dry ground appear and vegetation sprout"
    // FOUR  → "Let there be sun, moon, and stars"
    // FIVE  → "Let sea creatures swarm and birds soar"
    // SIX   → "Let animals roam and humankind be made in Our image"
    // SEVEN → "Rest"
    System.out.printf("Day %d: %s...%n", day.ordinal() + 1, day.decree());

    // 7일째엔 안식 선언
    if (day == Day.SEVEN) {
        System.out.println("Creator rests. Sabbath sanctified.");
    }

    // Selah(묵상) 0.75초
    Thread.sleep(750);
}

// 창조 완료 선언
System.out.println("\nIt is finished. Behold, it is very good."); 

//이하는 보너스(파이선으로 구현한 "보시기에 좋았더라")

def genesis():
    creation = [
        "빛 (Light)",
        "하늘과 바다 (Sky & Seas)",
        "땅과 식물 (Land & Plants)",
        "해·달·별 (Sun, Moon & Stars)",
        "새와 물고기 (Birds & Fish)",
        "육상 동물과 사람 (Animals & Humanity)",
        "쉬심 (Rest)"
    ]

    for day, work in enumerate(creation, start=1):
        if day == 7:
            print(f"Day {day}: 하나님이 쉬셨습니다. Shalom.")
        else:
            print(f"Day {day}: 하나님이 {work}을/를 창조하시고 보시기에 좋았더라.")

if __name__ == "__main__":
    genesis()

```

주요 코드 흐름

```java // 메인 실행 + Day 열거형 + Creator.create() 로직을 한눈에 Creator creator = new Crea…

토카타와 푸가

주님 뭐가 좋을까요?(제3화)

디모데, 요한, 누가형제에게

샬롬!

여리고성을 함락시킬 기세로 빡빡 문질렀습니다.
변기의 브엘세바에서 단까지, 구석구석 빠짐없이.

약 45분 경…

모든 것이 은혜!

Search