by shigemk2

当面は技術的なことしか書かない

2016-06-17から1日間の記事一覧

Land of Lisp 6章 メモ

Land of Lisp 第6章 ユーザーインターフェース/コマンドラインインタフェース 6.1 テキストの表示と読み込み print vs prin1 [1]> (print "foo") "foo" "foo" [2]> (progn (print "this") (print "is") (print "a") (print "test")) "this" "is" "a" "test" …