Advertisement
Guest User

Untitled

a guest
Dec 18th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.64 KB | None | 0 0
  1. foo.lisp:
  2.  
  3. (ql:quickload "hunchentoot")
  4. (defvar *acceptor* (make-instance 'hunchentoot:easy-acceptor :port 4242))
  5. (hunchentoot:start *acceptor*)
  6.  
  7. Output:
  8.  
  9. $ sbcl --load foo.lisp
  10. This is SBCL 2.0.11, an implementation of ANSI Common Lisp.
  11. More information about SBCL is available at <http://www.sbcl.org/>.
  12.  
  13. SBCL is free software, provided as is, with absolutely no warranty.
  14. It is mostly in the public domain; some portions are provided under
  15. BSD-style licenses.  See the CREDITS and COPYING files in the
  16. distribution for more information.
  17. To load "hunchentoot":
  18.   Load 1 ASDF system:
  19.     hunchentoot
  20. ; Loading "hunchentoot"
  21. .....
  22. *
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement