Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created November 26, 2017 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/c006cc47cb64f03da6cf77a697c07a6b to your computer and use it in GitHub Desktop.
Save jmercouris/c006cc47cb64f03da6cf77a697c07a6b to your computer and use it in GitHub Desktop.
(defclass buffer ()
((name :accessor name :initarg :name)
(mode :accessor mode :initarg :mode)
(view :accessor view :initarg :view)))
(defmethod print-object ((self buffer) stream)
(format out "~s" (name self)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment