Advertisement
Guest User

Untitled

a guest
Sep 19th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. alexei@ThinkPad:~$ mkdir a11
  2. alexei@ThinkPad:~$ touch a22.scm
  3. alexei@ThinkPad:~$ guile -L .
  4. GNU Guile 2.0.5-deb+1-1
  5. Copyright (C) 1995-2012 Free Software Foundation, Inc.
  6.  
  7. Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
  8. This program is free software, and you are welcome to redistribute it
  9. under certain conditions; type `,show c' for details.
  10.  
  11. Enter `,help' for help.
  12. scheme@(guile-user)> (search-path %load-path "a22.scm")
  13. $1 = "./a22.scm"
  14. scheme@(guile-user)> (search-path %load-path "a22")
  15. $2 = #f
  16. scheme@(guile-user)> (search-path %load-path "a11")
  17. $3 = #f
  18. scheme@(guile-user)> %load-extensions
  19. $4 = (".scm" "")
  20. scheme@(guile-user)> (rmdir "a11")
  21. scheme@(guile-user)> %load-path
  22. $5 = ("." "/usr/share/guile/2.0" "/usr/share/guile/site/2.0" "/usr/share/guile/site" "/usr/share/guile")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement