Hi 2009/7/25 ajlopez <[email protected]>: [...] > from loop* to loop, let* to let, fn* to fn... Are all *-ended names > special forms? [...]
No, you can name your own functions/macros something* if you want to. The * at the end normally just means that this function/macro is similar to the one without the *, but not exactly the same and the one without the * is the one that would normally be used. e.g. something* could be a helper function used by a macro called something. -- Michael Wood <[email protected]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
