[#24] New language: Icon
This commit is contained in:
parent
46f8716f46
commit
51bcd5c69b
|
@ -1479,6 +1479,17 @@ l ; ; o ; * 4
|
||||||
code: `(setv x (* 123 234))`,
|
code: `(setv x (* 123 234))`,
|
||||||
},
|
},
|
||||||
template: `(print "Hello, world!")
|
template: `(print "Hello, world!")
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
icon: {
|
||||||
|
aliases: ["icn", "icont", "iconx"],
|
||||||
|
name: "Icon",
|
||||||
|
main: "main.icn",
|
||||||
|
compile: "icont main.icn",
|
||||||
|
run: "./main",
|
||||||
|
template: `procedure main ()
|
||||||
|
write("Hello, world!")
|
||||||
|
end
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
ink: {
|
ink: {
|
||||||
|
|
|
@ -76,6 +76,9 @@ ghc
|
||||||
# Haxe
|
# Haxe
|
||||||
haxe
|
haxe
|
||||||
|
|
||||||
|
# Icon
|
||||||
|
icont
|
||||||
|
|
||||||
# INTERCAL
|
# INTERCAL
|
||||||
intercal
|
intercal
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue