Category:Hy: Difference between revisions

From Rosetta Code
Content added Content deleted
m (Tagged as a Lisp)
(Hy generates AST, not source. The astor tool can generate source from the AST, but it's not always valid.)
 
Line 2: Line 2:
{{implementation|Lisp}}
{{implementation|Lisp}}


A Lispy syntax for [[Python]]. The implementation can generate Python source code, not just bytecode, so you can use Hy with, e.g., PyPy just as well as CPython.
A Lispy syntax for [[Python]]. The implementation generates Python abstract syntax trees (AST), not just bytecode, so you can use Hy with, e.g., PyPy just as well as CPython.


Website: http://hylang.org
Website: http://hylang.org

Latest revision as of 21:06, 21 February 2018

Language
Hy
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using Hy.
Hy is an implementation of Lisp. Other implementations of Lisp.

A Lispy syntax for Python. The implementation generates Python abstract syntax trees (AST), not just bytecode, so you can use Hy with, e.g., PyPy just as well as CPython.

Website: http://hylang.org