2008/5/27 zambal <<a href="mailto:zambal@gmail.com">zambal@gmail.com</a>>:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On May 26, 5:10 pm, "Robert Virding" <<a href="mailto:rvird...@gmail.com">rvird...@gmail.com</a>> wrote:<br>
> These are taken from Scheme R6RS and will most likely go as LFE has no use<br>
> for them.<br>
><br>
> #' #` #, #,@ are for use in syntax-case macros and mean:<br>
><br>
> #'  - (syntax ...)<br>
> #`  - (quasisyntax ...)<br>
> #,  - (unsyntax ...)<br>
> #,@ - (unsyntax-splicing ...)<br>
><br>
> #; - comment out next sepxr which could actually be useful<br>
<br>
</div>Thanks for clearing that up. If I understand you correctly these<br>
things provide nothing that you can't do with LFE's macro form, right?</blockquote><div><br>Well, at the moment they don't provide anything. The code to handle doesn't exist. :-) And it probably never will, at least not in LFE. They are part of the syntax-case macro handling in Scheme and provide something like normal lisp backquote but wrapped in Schemes hygienic macro handling.<br>
<br>You can almost everything using LFE macros but without a gensym it is no really safe. It looks like I will have to add it.<br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
> Also I missed #| ... |# for block comments. Might also be useful. Question<br><div class="Ih2E3d">
> is if block comments are token or character based?<br>
<br>
</div>Actually, I haven't missed them at all. The only use case for me is<br>
when pasting some text from an external source in my code, which<br>
doesn't happen a lot.</blockquote><div><br>I don't miss them either but some people like them. And if you have them you can have long arguments on whether they should be token or character based, and whether they should nest or not. -) I think the erlang-questions can do without it.<br>
<br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
> Glad you enjoy LFE.<br>
<br>
Yeah, I have lot's of fun with it, especially it's macro<br>
functionality. Speaking of which, as far as I know it's currently not<br>
possible to export a macro in a module, so that it's usable in other<br>
modules. Is such functionality planned for a future release of LFE, if<br>
possible at all (or desirable, I haven't thought a lot about the<br>
consequences)?</blockquote><div><br>At present macros are not exported, the only solution today is to put them in a separate file and include them with (include-file ...). You can also slurp them into the shell. This is pretty much like you do in Erlang today. It wouldn't be too difficult to define a way to export them and have the macro expander check for their existence at macro expand time. It is a possible new feature for the next release. You would have to be a bit sneaky as their is no real support for macros in Erlang, it would be difficult to integrate them as seamlessly as in Lisp.<br>
<br>Robert<br><br></div></div>