Advertisement
Guest User

Untitled

a guest
Jun 7th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. Thoughts for a tutorial
  2. =======================
  3.  
  4. There are plenty of tutorials for installing a Common Lisp implementation and even for how to setup an "IDE". Assume this done, but nothing else.
  5.  
  6. Show how to install the needed tools like quicklisp and quickproject/cl-project.
  7.  
  8. Show how to create an own local library project
  9. - Just one trivial function
  10.  
  11. Show how to create the smallest project fulfilling these requirements:
  12. - Multi-file
  13. - Using the own created library you just created
  14. - Using one external library
  15.  
  16. The own created library would have something very trivial, like multiply-two.
  17.  
  18. The multi-file project would consist of a main file and one file more with a trivial function, like add-two-together.
  19.  
  20. One external library would be used, just to show how to do it. Alexandria would be a good candidate as it is a library worth to mention to beginners.
  21.  
  22. The main function in the main file would take two arguments (for example two numbers) and call one function from alexandria and both the trivial functions (from the local library and from the second file) and print the result.
  23.  
  24. Further the tutorial would show how to pack it up so you can call the program from command line with the arguments and get the result printed out.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement