코드 (4개)


시편1편

```java package jesusbornd;

// Psalm1.java // “Hello Kingdom” – 시편 1편 & 생활 적용 포인트 (초급 Java)

```python

psalm1.py

“Hello Kingdom” – 시편 1편 & 생활 적용 포인트 (Python 버전)

from random impo…

십계명

```java // TenCommandments.java // “Hello Kingdom” – 십계명 & 실생활 실천 팁 (기초 버전)

import java.util.R…

```python

ten_commandments.py

“Hello Kingdom” – 십계명 & 일상 실천 가이드 (입문용 Python)

from ra…

보시기에 좋았더라

### 주요 코드 흐름 

```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…

public static void main(string args)

> **In the beginning was the `main()`, and the `main()` was with God...**  
>  
> 이 이미지는 요한복음 1장 1–8절을 프로그래밍 언어의 구조로 해석한 **복음 코드**입니다.  
> `main()` 함수는 프로그래밍에서 모든 실행의 시작점이며,  
> 성경에서 예수 그리스도는 **모든 시작이자 중심**이십니다.  

---

코드 없이는 그 어떤 앱도 실행할 수 없듯이,  
**예수님 없이는 아무 것도 존재할 수 없습니다.**  
그분은 세상의 빛이며, 생명의 근원입니다.

In the beginning was the main(), and the main() was with God...

이 이미지는 요한복음 1장 …

Search