2018-08-22 01:37:32 -03:00

11 lines
217 B
Plaintext
Executable File

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