/c/Cil.il

http://github.com/leachim6/hello-world · SKILL · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · a83c4498b9df009c798a322a139d041a MD5 · raw file

  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. }