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
(progn | |
(defpackage #:test (:use #:cl)) | |
(in-package #:test)) |
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
;;; explanation for LOAD *.lisp | |
;;; 1. Load ignores :compile-toplevel, :load-toplevel | |
;;; Result: NIL is returned | |
;;; explanation for COMPILE | |
;;; 1. not-compile-time(NCT) | |
;;; 2. ignore mode, EVAL, remains in current mode | |
;;; Result: print to output 'foo-compile' | |
;;; explanation for LOAD *.fasl |
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
/* Mostly use this guide */ | |
http://tuhdo.github.io/c-ide.html | |
/* Install latest Emacs */ | |
// 1.Link | |
ftp://ftp.gnu.org/pub/gnu/emacs/ | |
// 2.Build dependencies(Ubuntu/Debian???) | |
sudo apt-get build-dep emacs24 | |
// 3. ./configure & make & sudo make install |