[#24] New language: CIL (MSIL)

This commit is contained in:
Radon Rosborough 2020-09-29 21:08:59 -07:00
parent 283afa1859
commit f3c15a0a67
2 changed files with 22 additions and 0 deletions

View File

@ -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: {

View File

@ -83,6 +83,9 @@ mono-mcs
${ceylon} ${ceylon}
openjdk-8-jdk-headless openjdk-8-jdk-headless
# CIL
mono-devel
# Clojure # Clojure
clojure clojure