An open API service indexing awesome lists of open source software.

https://github.com/egorbo/helloil

A simple .NET 6.0 Hello World written in pure IL
https://github.com/egorbo/helloil

il

Last synced: 8 months ago
JSON representation

A simple .NET 6.0 Hello World written in pure IL

Awesome Lists containing this project

README

          

# HelloIL
A simple .NET 8.0 Hello World written in pure IL

```
.assembly extern System.Runtime {}
.assembly extern System.Runtime.Extensions {}
.assembly extern System.Console {}
.assembly HelloIL {}

.class Program
{
.method static void Main()
{
.entrypoint

ldstr "Hello World!"
call void [System.Console]System.Console::WriteLine(string)
ret
}
}
```