[#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.
|
||||
Pour contents of the mixing bowl into the baking dish.
|
||||
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: {
|
||||
|
|
|
@ -83,6 +83,9 @@ mono-mcs
|
|||
${ceylon}
|
||||
openjdk-8-jdk-headless
|
||||
|
||||
# CIL
|
||||
mono-devel
|
||||
|
||||
# Clojure
|
||||
clojure
|
||||
|
||||
|
|
Loading…
Reference in New Issue