New language: Haxe
This commit is contained in:
parent
964e143964
commit
7716ea6af8
|
@ -770,6 +770,19 @@ main = putStrLn "Hello, world!"
|
||||||
`,
|
`,
|
||||||
hacks: ["ghci-config"],
|
hacks: ["ghci-config"],
|
||||||
},
|
},
|
||||||
|
haxe: {
|
||||||
|
aliases: ["hx"],
|
||||||
|
name: "Haxe",
|
||||||
|
main: "Main.hx",
|
||||||
|
compile: "haxe --main Main --js Main.js",
|
||||||
|
run: "node Main.js",
|
||||||
|
template: `class Main {
|
||||||
|
static public function main() {
|
||||||
|
trace("Hello, world!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
},
|
||||||
hcl: {
|
hcl: {
|
||||||
aliases: ["tf", "terraform", "hashicorp", "hc"],
|
aliases: ["tf", "terraform", "hashicorp", "hc"],
|
||||||
name: "HCL",
|
name: "HCL",
|
||||||
|
|
|
@ -44,6 +44,9 @@ hhvm
|
||||||
cabal-install
|
cabal-install
|
||||||
ghc
|
ghc
|
||||||
|
|
||||||
|
# Haxe
|
||||||
|
haxe
|
||||||
|
|
||||||
# INTERCAL
|
# INTERCAL
|
||||||
intercal
|
intercal
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue