금지규정

2026년 3월 5일 10:48분

package com.jesusbornd.leviticus;

public class Leviticus_03_Chapter_Lv1 {

    public static void main(String[] args) {
        boolean fat = true;
        boolean blood = false;

        if (fat || blood) {
            System.out.println("금지 / Forbidden");
        } else {
            System.out.println("허용 / Allowed");
        }
    }
}

fat = True
blood = False

if fat or blood:
    print("금지 / Forbidden")
else:
    print("허용 / Allowed")

Comments

Avatar
 2026년 3월 5일 10:50분

화목제라는 이름이 참 따뜻하게 느껴집니다. 하나님과 사람 사이의 관계가 회복되는 제사라는 의미가 떠오르네요.



Search

← 목록으로