New language: Haxe
This commit is contained in:
parent
964e143964
commit
7716ea6af8
|
@ -770,6 +770,19 @@ main = putStrLn "Hello, world!"
|
|||
`,
|
||||
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: {
|
||||
aliases: ["tf", "terraform", "hashicorp", "hc"],
|
||||
name: "HCL",
|
||||
|
|
|
@ -44,6 +44,9 @@ hhvm
|
|||
cabal-install
|
||||
ghc
|
||||
|
||||
# Haxe
|
||||
haxe
|
||||
|
||||
# INTERCAL
|
||||
intercal
|
||||
|
||||
|
|
Loading…
Reference in New Issue