From eb7ff781fb7df275d7c249b233299595e37171e4 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Tue, 9 Aug 2011 14:00:08 -0400 Subject: [PATCH] added hello world in hangul --- examples/hello-kr.rkt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/hello-kr.rkt diff --git a/examples/hello-kr.rkt b/examples/hello-kr.rkt new file mode 100644 index 0000000..2e188d3 --- /dev/null +++ b/examples/hello-kr.rkt @@ -0,0 +1,22 @@ +#lang planet dyoo/whalesong/korean + + +(정의 (안녕 이름) + (string-append "안녕" " " 이름)) + + +(displayln (안녕 "danny")) + + +(정의 (f x) + (조건부 + [(= x 0) + 1] + [다른 + (* x (f (- x 1)))])) + +(f 50) + + +(정의-구조 사람 (이름 나이)) +(make-사람 "danny" 32) \ No newline at end of file