2008-10-30から1日間の記事一覧

Schemeのお勉強 その3 条件判定

if, when, unless lisp の if 式は、他のどの言語の if 文 よりもシンプルだと思う。一切の無駄が無い。 gosh> (define x 10) x gosh> (if (< x 100) "small" "big") "small" gosh> (if (< x 100) (begin (display "A") (display "B") (display "C")) (displ…