/ hello-world / c / Cil.il
Cil.il
 1  // ilasm cil.il
 2  .assembly HelloWorld {}
 3  .method public static void Main() cil managed
 4  {
 5       .entrypoint
 6       .maxstack 1
 7       ldstr "Hello World"
 8       call void [mscorlib]System.Console::WriteLine(string)
 9       ret
10  }