Asim Jalis

Results 3 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...