[#24] New language: CIL (MSIL)
This commit is contained in:
parent
283afa1859
commit
f3c15a0a67
|
@ -657,6 +657,25 @@ Put milk chocolate into the mixing bowl.
|
||||||
Liquefy contents of the mixing bowl.
|
Liquefy contents of the mixing bowl.
|
||||||
Pour contents of the mixing bowl into the baking dish.
|
Pour contents of the mixing bowl into the baking dish.
|
||||||
Refrigerate for 1 hour.
|
Refrigerate for 1 hour.
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
cil: {
|
||||||
|
aliases: ["msil", "il", "ilasm"],
|
||||||
|
name: "CIL",
|
||||||
|
main: "main.il",
|
||||||
|
compile: "ilasm main.il",
|
||||||
|
run: "mono main.exe",
|
||||||
|
template: `.assembly main {}
|
||||||
|
.class Main
|
||||||
|
{
|
||||||
|
.method static void Main() cil managed
|
||||||
|
{
|
||||||
|
.entrypoint
|
||||||
|
ldstr "Hello, world!"
|
||||||
|
call void [mscorlib]System.Console::WriteLine(string)
|
||||||
|
ret
|
||||||
|
}
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
},
|
},
|
||||||
clean: {
|
clean: {
|
||||||
|
|
|
@ -83,6 +83,9 @@ mono-mcs
|
||||||
${ceylon}
|
${ceylon}
|
||||||
openjdk-8-jdk-headless
|
openjdk-8-jdk-headless
|
||||||
|
|
||||||
|
# CIL
|
||||||
|
mono-devel
|
||||||
|
|
||||||
# Clojure
|
# Clojure
|
||||||
clojure
|
clojure
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue