Category:Hy: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{language}} 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....")
 
(Hy generates AST, not source. The astor tool can generate source from the AST, but it's not always valid.)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{language}}
{{language}}
{{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