천지창조

2025년 10월 20일 12:17분

package jesusbornd.coding.lv1;

public class Genesis_01_Chapter_Lv1 {

    // --- 대표 구절(샘플) ---
    // ※ 입문 단계: 너무 길게 넣지 말고, 핵심 3~4절만 맛보기!
    private static final String[][] SAMPLE_VERSES = {
            // { "참조", "KRV", "ESV" }
            { "창세기 1:1",
                    "태초에 하나님이 천지를 창조하시니라",
                    "In the beginning, God created the heavens and the earth." },

            { "창세기 1:3",
                    "하나님이 가라사대 빛이 있으라 하시매 빛이 있었고",
                    "And God said, “Let there be light,” and there was light." },

            { "창세기 1:27",
                    "하나님이 자기 형상 곧 하나님의 형상대로 사람을 창조하시되 남자와 여자를 창조하시고",
                    "So God created man in his own image, in the image of God he created him; male and female he created them." },

            { "창세기 1:31",
                    "하나님이 그 지으신 모든 것을 보시니 보시기에 심히 좋았더라",
                    "And God saw everything that he had made, and behold, it was very good." }
    };

    // --- 한 줄 요약 & 적용 ---
    private static final String SUMMARY =
            "하나님이 말씀으로 질서를 세우시고, 사람을 하나님의 형상대로 지으시며, "
                    + "모든 것을 ‘심히 좋다’ 하셨다.";
    private static final String PRACTICE =
            "오늘 ‘말씀 한 절 → 순종 한 가지’로 하루를 시작하고, "
                    + "결정 1건을 ‘보시기에 좋다’ 기준(정직/사랑/절제)으로 선택하기.";

    public static void main(String[] args) {
        showTitle();
        showSampleVerses();
        showSummary();
        showPractice();
    }

    private static void showTitle() {
        System.out.println("[Genesis 1 | KRV & ESV]");
        System.out.println("— 입문(Lv1): 대표 구절 몇 개로 장의 흐름을 맛보기 —\n");
    }

    private static void showSampleVerses() {
        for (String[] row : SAMPLE_VERSES) {
            System.out.println(row[0]);
            System.out.println("KRV: " + row[1]);
            System.out.println("ESV: " + row[2]);
            System.out.println();
        }
    }

    private static void showSummary() {
        System.out.println("[Summary]");
        System.out.println(SUMMARY);
        System.out.println();
    }

    private static void showPractice() {
        System.out.println("[Practice]");
        System.out.println(PRACTICE);
    }
}

# Genesis_01_Chapter_Lv1.py
# Lv1 입문: 창세기 1장—대표 구절 몇 개(KRV+ESV) + 한 줄 요약 + 한 줄 적용
# 목적: 아주 기초적인 “장 단위 묵상 출력” 흐름 익히기 (문자열/함수만 사용)

from typing import List, Dict


def title() -> None:
    print("[Genesis 1 | KRV & ESV]")
    print("— 입문(Lv1): 대표 구절 몇 개로 장의 흐름을 맛보기 —\n")


def sample_verses() -> List[Dict[str, str]]:
    # 대표 구절 4개만: 입문 단계에서 장의 핵심 흐름을 맛보는 용도
    return [
        {
            "ref": "창세기 1:1",
            "krv": "태초에 하나님이 천지를 창조하시니라",
            "esv": "In the beginning, God created the heavens and the earth.",
        },
        {
            "ref": "창세기 1:3",
            "krv": "하나님이 가라사대 빛이 있으라 하시매 빛이 있었고",
            "esv": "And God said, “Let there be light,” and there was light.",
        },
        {
            "ref": "창세기 1:27",
            "krv": "하나님이 자기 형상 곧 하나님의 형상대로 사람을 창조하시되 남자와 여자를 창조하시고",
            "esv": "So God created man in his own image, in the image of God he created him; "
                   "male and female he created them.",
        },
        {
            "ref": "창세기 1:31",
            "krv": "하나님이 그 지으신 모든 것을 보시니 보시기에 심히 좋았더라",
            "esv": "And God saw everything that he had made, and behold, it was very good.",
        },
    ]


def show_sample_verses(rows: List[Dict[str, str]]) -> None:
    for row in rows:
        print(row["ref"])
        print("KRV:", row["krv"])
        print("ESV:", row["esv"])
        print()


def show_summary() -> None:
    summary = (
        "하나님이 말씀으로 질서를 세우시고, 사람을 하나님의 형상대로 지으시며, "
        "모든 것을 ‘심히 좋다’ 하셨다."
    )
    print("[Summary]")
    print(summary)
    print()


def show_practice() -> None:
    practice = (
        "‘말씀 한 절 → 순종 한 가지’로 하루를 시작하고, "
        "결정 1건을 ‘보시기에 좋다’ 기준(정직/사랑/절제)으로 선택하기."
    )
    print("[Practice]")
    print(practice)


def main() -> None:
    title()
    rows = sample_verses()
    show_sample_verses(rows)
    show_summary()
    show_practice()


if __name__ == "__main__":
    main()

Comments

Avatar
 2025년 10월 20일 12:26분

은혜 가득! 한 줄 한 줄에 ‘말씀→순종’의 길이 또렷해졌습니다. 🙏



Search

← 목록으로