타작마당

2026년 8월 21일 09:30분

룻기 3장에서 룻은 보아스의 발치에 누워 기업무를 자의 역할을 청원합니다. 밤사이의 조용한 요청이 인생을 바꿉니다. 나는 보호자 지정 청원을 처리하는 함수를 만들었습니다.

package com.jesusbornd.ruth;

public class Ruth_03_Chapter_Lv1 {
    record Petition(String from, String to, String request) {}
    static String process(Petition p) {
        return String.format("%s → %s 에게 '%s' 청원: ✅ 접수", p.from(), p.to(), p.request());
    }
    public static void main(String[] args) {
        System.out.println(process(new Petition("룻", "보아스", "기업무름")));
    }
}

def petition(from_: str, to: str, req: str) -> str:
    return f"{from_}{to} 에게 '{req}' 청원: ✅ 접수"

print(petition("룻", "보아스", "기업무름"))

Comments

Avatar
 2026년 8월 21일 11:36분

발치에 누운 겸손한 청원이 가장 담대한 용기입니다.



Search

← 목록으로