From 77519bf7e4f3f09d331f1e38c7422fbb089a9a97 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Tue, 29 Jul 2008 15:51:52 +0200 Subject: [PATCH] add CIL (.net assembly) --- c/cil.il | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 c/cil.il diff --git a/c/cil.il b/c/cil.il new file mode 100644 index 00000000..cca0c8df --- /dev/null +++ b/c/cil.il @@ -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 +}