주님의 7대 "I am"(요한복음)

2025년 7월 8일 20:12분

// EgoEimi.java
// “Hello Kingdom” – 요한복음의 I AM(ἐγώ εἰμι) 선언을 한눈에!

import java.util.Random;

public class EgoEimi {

    // 7대 “I AM” 선언 + 성경 구절
    private static final String[] STATEMENTS = {
        "1. I am the Bread of Life      (John 6:35)",
        "2. I am the Light of the World (John 8:12)",
        "3. I am the Gate               (John 10:9)",
        "4. I am the Good Shepherd      (John 10:11)",
        "5. I am the Resurrection and the Life (John 11:25)",
        "6. I am the Way, the Truth, and the Life (John 14:6)",
        "7. I am the True Vine          (John 15:1)"
    };

    /** 1) 모든 I AM 선언을 출력 */
    public static void listStatements() {
        System.out.println("✨  The Seven ‘I AM’ Statements in John:");
        for (String s : STATEMENTS) {
            System.out.println(" - " + s);
        }
        System.out.println();
    }

    /** 2) 오늘 묵상할 I AM을 무작위 제안 */
    public static void pickRandom() {
        Random rnd = new Random();
        String today = STATEMENTS[rnd.nextInt(STATEMENTS.length)];
        System.out.println("📖  Today’s focus: " + today);
    }

    /** 3) 프로그램 엔트리포인트 */
    public static void main(String[] args) {
        listStatements();
        pickRandom();
    }
}

#### ego_eimi.py
#### “Hello Kingdom” – 요한복음 7대 I AM(ἐγώ εἰμι) 선언

from random import choice


class EgoEimi:
    """요한복음 ‘I AM’ 7대 선언 모음"""

    STATEMENTS = [
        "1. I am the Bread of Life      (John 6:35)",
        "2. I am the Light of the World (John 8:12)",
        "3. I am the Gate               (John 10:9)",
        "4. I am the Good Shepherd      (John 10:11)",
        "5. I am the Resurrection and the Life (John 11:25)",
        "6. I am the Way, the Truth, and the Life (John 14:6)",
        "7. I am the True Vine          (John 15:1)",
    ]

    @classmethod
    def list_statements(cls) -> None:
        """1) 7가지 선언 출력"""
        print("✨  The Seven ‘I AM’ Statements in John:")
        for s in cls.STATEMENTS:
            print(" -", s)
        print()

    @classmethod
    def pick_random(cls) -> None:
        """2) 오늘의 묵상 선언 랜덤 추천"""
        print("📖  Today’s focus:", choice(cls.STATEMENTS))


def main() -> None:
    EgoEimi.list_statements()
    EgoEimi.pick_random()


if __name__ == "__main__":
    main()

Comments

Avatar
 2025년 7월 8일 20:23분

내가 곧 길이요 진리요 생명이니 나로 말미암지 않고는 아버지께로 올 자가 없느니라(요14:6)


Avatar
 2025년 7월 8일 20:25분

오늘도 “나는 생명의 떡이다” 하시는 분께 기대며, 구주께서 내 삶의 모든 필요를 친히 채워주심을 믿고 걸어가요. 주께서 바로 “길이요 진리요 생명”이심을 고백합니다!



Search

← 목록으로