This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(quicklisp:quickload '(#:anaphora #:iterate #:cl-ppcre)) | |
(defpackage #:qldot | |
(:use #:cl #:iterate #:anaphora #:ppcre)) | |
(in-package #:qldot) | |
(defparameter *font* "Courier New") | |
(defmacro portname (sys &optional prj) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 前置きとして… | |
;; どんな言語にもあると思いますが、 Common Lisp にも一般的なスタイルがあります。 | |
;; まずは、それに目を通すことをおすすめします。 | |
;; | |
;; Google Common Lisp Style Guide | |
;; en: https://google-styleguide.googlecode.com/svn/trunk/lispguide.xml | |
;; jp: http://lisphub.jp/doc/google-common-lisp-style-guide/ | |
;; | |
;; Tutorial on Good Lisp Programming Style | |
;; en: http://www.norvig.com/luv-slides.ps |