gilch
gilch
Why do we even have `_compile_time_hack` if we can't use globals from the same file?
Of course macro expansion occurs at compile time instead of runtime, that's the point of having macros in the first place.
I'll have to try that. It might be enough to bring #1328 back.
>> Inside a `quasiquote`, plain symbols are converted to namespaced ones. Each symbol is first looked up in the "hy" namespace, if it isn't there, it is attributed to the...
Yes, that is what Lisp-1/Lisp-2 means. But the Lisp-1/Lisp-2 _issue_ is about the _consequences_ of that design choice, which is not orthogonal at all. Some of the trade-offs are pretty...
The problem with delimiters is that they may appear in the output. A long, random delimiter, like a UUID, is unlikely to cause conflicts, but we probably don't want that...
@kirbyfan64, we're talking about seting up highlighting for hy-mode in emacs, see hylang/hy-mode#46.
First, a quick demonstration of dynamic variables in Emacs Lisp, so we're on the same page: ``` Elisp ELISP> (defun greet () (format "Hello, %s!" the-name)) greet ELISP> (defvar the-name...
> But I'm not completely sure if I understand (or even can think of) all possible cases for this. Variables with dynamic scope would only be available inside a let...
I also wonder about mobile Python implementations. For Android, I'm aware of [SL4A](https://github.com/damonkohler/sl4a) and [Kivy](https://github.com/kivy/kivy) (actually the sister project https://github.com/kivy/python-for-android). I think someone (Edit: xikuuky) mentioned getting Hy working on...