Placeholder for a project to write a (very) simple lisp in rust. Will probably start out as just a simple scheme-like lisp and maybe morph into a lisp-2 in the future. No grand plans here, just a project to learn rust. Not yet started.

.gitignore 570B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # ---> Emacs
  2. # -*- mode: gitignore; -*-
  3. *~
  4. \#*\#
  5. /.emacs.desktop
  6. /.emacs.desktop.lock
  7. *.elc
  8. auto-save-list
  9. tramp
  10. .\#*
  11. # Org-mode
  12. .org-id-locations
  13. *_archive
  14. # flymake-mode
  15. *_flymake.*
  16. # eshell files
  17. /eshell/history
  18. /eshell/lastdir
  19. # elpa packages
  20. /elpa/
  21. # reftex files
  22. *.rel
  23. # AUCTeX auto folder
  24. /auto/
  25. # cask packages
  26. .cask/
  27. # ---> Linux
  28. *~
  29. # KDE directory preferences
  30. .directory
  31. # Linux trash folder which might appear on any partition or disk
  32. .Trash-*
  33. # ---> Rust
  34. # Compiled files
  35. *.o
  36. *.so
  37. *.rlib
  38. *.dll
  39. # Executables
  40. *.exe
  41. # Generated by Cargo
  42. /target/