add CIL (.net assembly)

This commit is contained in:
Benjamin Kramer 2008-07-29 15:51:52 +02:00
parent 61d644601a
commit 77519bf7e4

10
c/cil.il Normal file
View File

@ -0,0 +1,10 @@
// ilasm cil.il
.assembly HelloWorld {}
.method public static void Main() cil managed
{
.entrypoint
.maxstack 1
ldstr "Hello World"
call void [mscorlib]System.Console::WriteLine(string)
ret
}