New language: Hy

This commit is contained in:
Radon Rosborough 2020-07-18 20:54:59 -06:00
parent 6f7e28c9a4
commit 4befef1413
2 changed files with 11 additions and 0 deletions

View File

@ -745,6 +745,14 @@ l ; ; o ; * 4
3 3 ; @ . >
; 2 3 < \\
4 ; * /
`,
},
hy: {
name: "Hy",
repl: "hy",
main: "main.hy",
run: "hy -i main.hy",
template: `(print "Hello, world!")
`,
},
ink: {

View File

@ -55,6 +55,9 @@ npm install -g @elm-tooling/elm-language-server
# FORTRAN
pip3 install fortran-language-server
# Hy
pip3 install hy
# Julia
julia -e 'using Pkg; Pkg.add("LanguageServer")'