Skip to content

Instantly share code, notes, and snippets.

@nipra
Created May 9, 2012 10:54
Show Gist options
  • Save nipra/2643709 to your computer and use it in GitHub Desktop.
Save nipra/2643709 to your computer and use it in GitHub Desktop.
Hello World!
;;; http://www.xach.com/lisp/buildapp/
;;; buildapp --output hello-world --asdf-path ~/asds/ --load hello-world.lisp --entry main
;;; nipra@unlambda:~/Projects/CL$ ./hello-world
(in-package :cl-user)
(defun main (argv)
(declare (ignore argv))
(format t "Hello World!~%"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment