화룡점정
2025년 10월 22일 11:22분
package jesusbornd.coding.lv1;
/*
// Genesis_02_Chapter_Lv1.java
// Lv1 입문: 창세기 2장 — 대표 구절 몇 개(KRV+ESV) + 한 줄 요약 + 한 줄 적용
// 목표: 아주 기초적인 “장 단위 묵상 출력” 흐름 익히기 (문자열/메서드만 사용)
*/
public class Genesis_02_Chapter_Lv1 {
// --- 대표 구절(입문 단계: 핵심 5절만) ---
// { "참조", "KRV(개역한글)", "ESV" }
private static final String[][] SAMPLE = {
{ "창세기 2:1–3",
"천지와 만물이 다 이루니라 … 하나님이 일곱째 날에 안식하시니 … 안식일을 거룩하게 하시니라",
"Thus the heavens and the earth were finished… So God blessed the seventh day and made it holy, because on it God rested…"},
{ "창세기 2:7",
"여호와 하나님이 흙으로 사람을 지으시고 생기를 그 코에 불어 넣으시니 사람이 생령이 되니라",
"then the LORD God formed the man of dust from the ground and breathed into his nostrils the breath of life…"},
{ "창세기 2:18",
"사람이 혼자 사는 것이 좋지 못하니 내가 그를 위하여 돕는 배필을 지으리라",
"It is not good that the man should be alone; I will make him a helper fit for him."},
{ "창세기 2:22–24",
"여호와 하나님이 그 갈빗대로 여자를 만드시고 … 이러므로 남자가 부모를 떠나 그 아내와 연합하여 둘이 한 몸을 이룰지로다",
"And the rib… he made into a woman… Therefore a man shall leave his father and his mother and hold fast to his wife, and they shall become one flesh."},
{ "창세기 2:25",
"아담과 그의 아내 두 사람이 벌거벗었으나 부끄러워 아니하니라",
"And the man and his wife were both naked and were not ashamed."}
};
// --- 한 줄 요약 & 적용 ---
private static final String SUMMARY =
"창조는 안식으로 완성되고(2:1–3), 사람은 하나님의 생기와 관계 속에 지어졌다(2:7,18). "
+ "결혼은 ‘연합하여 한 몸’의 거룩한 언약이며(2:24), 수치 없음은 죄 이전의 샬롬을 비춘다(2:25).";
private static final String PRACTICE =
"오늘 ‘안식의 리듬’ 10분을 정하고, ‘돕는 배필/동역’의 마음으로 한 사람을 격려하며, "
+ "관계에서 ‘하나 됨’을 세우는 한 문장을 실천하자.";
public static void main(String[] args) {
showTitle();
showSampleVerses();
showSummary();
showPractice();
}
private static void showTitle() {
System.out.println("[Genesis 2 | KRV & ESV]");
System.out.println("— 입문(Lv1): 대표 구절 몇 개로 장의 흐름을 맛보기 —\n");
}
private static void showSampleVerses() {
for (String[] row : SAMPLE) {
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_02_Chapter_Lv1.py
#### Lv1 입문: 창세기 2장 — 대표 구절 몇 개(KRV+ESV) + 한 줄 요약 + 한 줄 적용
#### 목적: 아주 기초적인 “장 단위 묵상 출력” 흐름 익히기 (문자열/함수만 사용)
from typing import List, Dict
def title() -> None:
print("[Genesis 2 | KRV & ESV]")
print("— 입문(Lv1): 대표 구절 몇 개로 장의 흐름을 맛보기 —\n")
def sample_verses() -> List[Dict[str, str]]:
# 대표 구절 5개: 안식(2:1–3) · 생기(2:7) · 관계(2:18) · 결혼 언약(2:22–24) · 수치 없음(2:25)
return [
{
"ref": "창세기 2:1–3",
"krv": "천지와 만물이 다 이루니라 … 하나님이 이렛날에 그 하시던 일을 마치시고 안식하시니라. "
"하나님이 이렛날을 복 주사 거룩하게 하셨으니…",
"esv": "Thus the heavens and the earth were finished… So God blessed the seventh day and made it holy, "
"because on it God rested from all his work that he had done in creation.",
},
{
"ref": "창세기 2:7",
"krv": "여호와 하나님이 흙으로 사람을 지으시고 생기를 그 코에 불어 넣으시니 사람이 생령이 되니라",
"esv": "then the LORD God formed the man of dust from the ground and breathed into his nostrils the breath of life, "
"and the man became a living creature.",
},
{
"ref": "창세기 2:18",
"krv": "여호와 하나님이 가라사대 사람이 혼자 사는 것이 좋지 못하니 내가 그를 위하여 돕는 배필을 지으리라",
"esv": "It is not good that the man should be alone; I will make him a helper fit for him.",
},
{
"ref": "창세기 2:22–24",
"krv": "여호와 하나님이 아담에게서 취한 갈빗대로 여자를 만드시고… 이러므로 남자가 부모를 떠나 그 아내와 연합하여 "
"둘이 한 몸을 이룰지로다",
"esv": "And the rib that the LORD God had taken from the man he made into a woman… Therefore a man shall leave "
"his father and his mother and hold fast to his wife, and they shall become one flesh.",
},
{
"ref": "창세기 2:25",
"krv": "아담과 그의 아내 두 사람이 벌거벗었으나 부끄러워 아니하니라",
"esv": "And the man and his wife were both naked and were not ashamed.",
},
]
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 = (
"창조는 안식으로 완성되고(2:1–3), 사람은 하나님의 생기와 관계 속에 지어졌다(2:7,18). "
"결혼은 ‘연합하여 한 몸’의 거룩한 언약이며(2:24), 수치 없음은 죄 이전의 샬롬을 비춘다(2:25)."
)
print("[Summary]")
print(summary)
print()
def show_practice() -> None:
practice = (
"‘안식의 리듬’ 10분을 정해 실천하고, 한 사람을 돕는 배필/동역의 마음으로 격려하며, "
"관계에서 ‘하나 됨’을 세우는 한 문장을 오늘 실행하자."
)
print("[Practice]")
print(practice)
def main() -> None:
title()
rows = sample_verses()
show_sample_verses(rows)
show_summary()
show_practice()
if __name__ == "__main__":
main()
← 목록으로
Comments
오늘 “10분 안식”과 “하나 됨 한 문장”을 실행하며, 주께서 숨을 불어넣으신(창 2:7) 그 생명으로 동역자들을 격려하겠습니다. 이 작은 스크립트가 우리 일상에 거룩한 리듬을 컴파일하게 하소서. 아멘.