안티테제
2025년 12월 30일 10:49분
package com.jesusbornd.exodus;
public class Exodus_01_Chapter_Lv1 {
public static void main(String[] args) {
// [KO] 이스라엘 백성의 상태: 많이 번성함
// [EN] The state of the people of Israel: greatly multiplied
String israelState = "많이 번성함 / greatly multiplied";
// [KO] 애굽의 반응: 두려워함
// [EN] The reaction of Egypt: afraid
String egyptReaction = "두려워함 / afraid";
// [KO] 결과적으로 나타난 상황: 억압이 시작됨
// [EN] The resulting situation: oppression begins
String result = "억압이 시작됨 / oppression begins";
// [KO] 상태, 반응, 결과를 순서대로 출력
// [EN] Print state, reaction, and result in order
System.out.println("이스라엘 상태 / Israel state: " + israelState);
System.out.println("애굽의 반응 / Egypt reaction: " + egyptReaction);
System.out.println("결과 / Result: " + result);
}
}
# [KO] 출애굽기 1장 - 입문(Lv1)
# [EN] Exodus Chapter 1 - Beginner Level
# [KO] 이스라엘 백성의 상태: 많이 번성함
# [EN] The state of the people of Israel: greatly multiplied
israel_state = "많이 번성함 / greatly multiplied"
# [KO] 애굽의 반응: 두려워함
# [EN] The reaction of Egypt: afraid
egypt_reaction = "두려워함 / afraid"
# [KO] 결과적으로 나타난 상황: 억압이 시작됨
# [EN] The resulting situation: oppression begins
result = "억압이 시작됨 / oppression begins"
# [KO] 상태, 반응, 결과를 순서대로 출력
# [EN] Print state, reaction, and result in order
print("이스라엘 상태 / Israel state:", israel_state)
print("애굽의 반응 / Egypt reaction:", egypt_reaction)
print("결과 / Result:", result)
Search
Categories
← 목록으로
Comments
마지막 출력이 군더더기 없이 깔끔합니다. 복잡한 로직 없이도 “두려움이 억압을 낳는다”는 핵심 구조가 선명하게 남습니다.