Asim Jalis

Results 6 comments of Asim Jalis

Another example to consider is Dale. This is a Lisp that targets C and has a REPL. https://github.com/tomhrr/dale

One workaround is to wrap the Python code into `pys` and then call the functions from Hy, like so: ```hy (pys " def hello_world(): print('Hello, world!') ") (hello-world) ``` Outputs:...

Removing the quotes from the prompt worked for me. Here is the code with some small fixes that worked. ```python SQLITE_PROMPT_TEXT = '''You are a SQLite expert. Given an input...

Note this used to work in older versions of Hy. It is possible that the recent changes to `->` had the effect of breaking this.

Here is an example of where the old simpler interpretation of `->` is useful. ```hy ; Find parent directory path of code where current stack frame is running. (-> (inspect.currentframe)...

Thanks for the pointer. Chlorine looks interesting. On Fri, Dec 20, 2013 at 7:28 PM, Ram Krishnan [email protected]: > Unfortunately, clojurejs hasn't been updated to work with Clojure 1.5.x. I...