added hello world in hangul
This commit is contained in:
parent
c31159d311
commit
eb7ff781fb
22
examples/hello-kr.rkt
Normal file
22
examples/hello-kr.rkt
Normal file
|
@ -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)
|
Loading…
Reference in New Issue
Block a user