속죄제물
2026년 3월 6일 15:58분
package com.jesusbornd.leviticus;
public class Leviticus_04_Chapter_Lv1 {
public static void main(String[] args) {
int target = 2;
switch (target) {
case 1: System.out.println("제사장 / Priest"); break;
case 2: System.out.println("온 회중 / Congregation"); break;
case 3: System.out.println("족장 / Ruler"); break;
default: System.out.println("평민 / Common"); break;
}
}
}
target = 2
match target:
case 1:
print("제사장 / Priest")
case 2:
print("온 회중 / Congregation")
case 3:
print("족장 / Ruler")
case _:
print("평민 / Common")
Search
Categories
← 목록으로
Comments
제사장부터 평민까지 모두가 대상이라는 부분도 인상적입니다. 결국 하나님 앞에서는 모두가 같은 자리에서 은혜가 필요하다는 메시지가 전해지는 것 같습니다.