Skip to content

Instantly share code, notes, and snippets.

@y2q-actionman
Created December 13, 2012 13:00
Show Gist options
  • Save y2q-actionman/4276242 to your computer and use it in GitHub Desktop.
Save y2q-actionman/4276242 to your computer and use it in GitHub Desktop.
example1 : LIST 関数
(in-package :cl-user)
(setf lis1 (list 1 2 3))
(print lis1) ; (1 2 3)
(setf lis2 (list 1 (list 2 3) (list 4 5)))
(print lis2) ; (1 (2 3) (4 5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment