Hy

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
Hy
Hy Cuddles.png
Hy logo - Cuddles the cuttlefish
ParadigmMulti-paradigm: procedural, functional, object-oriented, meta, reflective, generic
FamilyLisp
Designed byPaul Tagliamonte
DevelopersCore team
First appeared2013; 6 years ago (2013)
Preview release
0.15.0 / 11 September 2018; 4 months ago (2018-09-11)
Scopelexical, optionally dynamic[citation needed]
PlatformIA-32, x86-64
OSCross-platform
LicenseMIT-style
Filename extensions.hy
Websitehylang.org
Influenced by
Lisp, Kawa, Clojure, Common Lisp

Hy (alternately, Hylang) is a programming language, a dialect of the language Lisp designed to interact with the language Python by translating expressions into Python's abstract syntax tree (AST). Hy was introduced at Python Conference (PyCon) 2013 by Paul Tagliamonte.[1]

Similar to Kawa's and Clojure's mapping of s-expressions onto the Java virtual machine (JVM),[2] Hy is meant to operate as a transparent Lisp front end to Python's abstract syntax.[3] Lisp allows operating on code as data (metaprogramming). Thus, Hy can be used to write domain-specific languages.[4] Hy also allows Python libraries, including the standard library, to be imported and accessed alongside Hy code with a compiling[note 1] step converting the data structure of both into Python's AST.[note 2][5][6][7]

Example code[edit]

From the language documentation:[8]

=> (print "Hy!")
Hy!
=> (defn salutationsnm [name] (print (+ "Hy " name "!")))
=> (salutationsnm "YourName")
Hy YourName!

See also[edit]

Notes[edit]

  1. ^ "Compiled" is a term which may apply to expressing Hy code in Python's AST or converting that AST into bytecode, the latter being dependent on the specific Python interpreter used and not Hy.
  2. ^ Hy is tested on Python 2.7, 3.4 through 3.6, and PyPy.

References[edit]

  1. ^ Tagliamonte, Paul (2 April 2013). PyCon lightning talk (Speech). Python Conference (PyCon). Santa Clara. Retrieved 2 September 2014.
  2. ^ Turto, Tuukka (14 February 2014). "Programming Can Be Fun with Hy". Open Source For You. Retrieved 2 September 2014.
  3. ^ Edge, Jake (30 April 2014). "Getting Hy on Python". LWN.net. Retrieved 2 September 2014.
  4. ^ Tagliamonte, Paul (11 April 2014). Getting Hy on Python: How to implement a Lisp front-end to Python (Speech). PyCon. Montreal. Retrieved 2 September 2014.
  5. ^ "Hy Documentation". hylang.org. Retrieved 3 September 2014.
  6. ^ Danjou, Julien (26 March 2014). "The AST". The Hacker's Guide to Python. pp. 165–172.
  7. ^ Kitchin, John (31 March 2016). "More on Hy and why I think it is a big deal". The Kitchin Research Group. Carnegie Mellon University. Retrieved 19 September 2018.
  8. ^ "Quickstart". Hylang.org. 15 May 2018. Retrieved 19 September 2018.

External links[edit]