[#24] New language: Icon

This commit is contained in:
Radon Rosborough 2020-09-29 12:34:16 -07:00
parent 46f8716f46
commit 51bcd5c69b
2 changed files with 14 additions and 0 deletions

View File

@ -1479,6 +1479,17 @@ l ; ; o ; * 4
code: `(setv x (* 123 234))`,
},
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: {

View File

@ -76,6 +76,9 @@ ghc
# Haxe
haxe
# Icon
icont
# INTERCAL
intercal