Advertisement
Guest User

Untitled

a guest
Jul 29th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. * (load "/home/foo/Downloads/pkgtest/utils.lsp")
  2.  
  3. ; file: /home/foo/Downloads/pkgtest/utils.lsp
  4. ; in: DEFUN HELLO-UTILS
  5. ; (UTILS::DEFUN UTILS:HELLO-UTILS NIL (UTILS::FORMAT UTILS::T "hello utils"))
  6. ;
  7. ; caught COMMON-LISP:STYLE-WARNING:
  8. ; undefined function: UTILS::DEFUN
  9.  
  10. ; (UTILS::FORMAT UTILS::T "hello utils")
  11. ;
  12. ; caught COMMON-LISP:STYLE-WARNING:
  13. ; undefined function: UTILS::FORMAT
  14.  
  15. ; (UTILS::DEFUN UTILS:HELLO-UTILS NIL (UTILS::FORMAT UTILS::T "hello utils"))
  16. ;
  17. ; caught COMMON-LISP:WARNING:
  18. ; undefined variable: UTILS:HELLO-UTILS
  19.  
  20. ; (UTILS::FORMAT UTILS::T "hello utils")
  21. ;
  22. ; caught COMMON-LISP:WARNING:
  23. ; undefined variable: UTILS::T
  24. ;
  25. ; compilation unit finished
  26. ; Undefined functions:
  27. ; DEFUN FORMAT
  28. ; Undefined variables:
  29. ; HELLO-UTILS T
  30. ; caught 2 WARNING conditions
  31. ; caught 2 STYLE-WARNING conditions
  32. While evaluating the form starting at line 2, column 0
  33. of #P"/home/foo/Downloads/pkgtest/utils.lsp":
  34.  
  35. debugger invoked on a COMMON-LISP:UNBOUND-VARIABLE in thread
  36. #<THREAD "main thread" RUNNING {1000560083}>:
  37. The variable HELLO-UTILS is unbound.
  38.  
  39. Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.
  40.  
  41. restarts (invokable by number or by possibly-abbreviated name):
  42. 0: [CONTINUE ] Retry using HELLO-UTILS.
  43. 1: [USE-VALUE ] Use specified value.
  44. 2: [STORE-VALUE] Set specified value and use it.
  45. 3: [RETRY ] Retry EVAL of current toplevel form.
  46. 4: Ignore error and continue loading file "/home/foo/Downloads/pkgtest/utils.lsp".
  47. 5: [ABORT ] Abort loading file "/home/foo/Downloads/pkgtest/utils.lsp".
  48. 6: Exit debugger, returning to top level.
  49.  
  50. ((COMMON-LISP:LAMBDA COMMON-LISP:NIL :IN "/home/foo/Downloads/pkgtest/utils.lsp"))
  51. source: (DEFUN HELLO-UTILS COMMON-LISP:NIL (FORMAT T "hello utils"))
  52. 0]
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement