Search found 2 matches
- Mon Jun 01, 2009 1:10 pm
- Forum: Common Lisp
- Topic: converting macro parameter name to key parameter
- Replies: 5
- Views: 10876
Re: converting macro parameter name to key parameter
Thanks for your answer! I'll look more deeply at the intern documentation for future reference, but stick with the 3 functions. I suppose that if it was so hard to make it work with macros (although I'm a beginner, 3 hours with no success for something so short seems too much) it's because it wasn't...
- Sun May 31, 2009 4:34 pm
- Forum: Common Lisp
- Topic: converting macro parameter name to key parameter
- Replies: 5
- Views: 10876
converting macro parameter name to key parameter
Hi, I'm learning common lisp and this is my first try at writing something useful. I wanted to create some functions and data structures to work with 3d objects. I started with a 3d-point like this: (defstruct 3d-point (x 0) (y 0) (z 0)) And wanted to have some nice macros to create unit vectors. I ...