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
- Host: GitHub
- URL: https://github.com/egorbo/helloil
- Owner: EgorBo
- Created: 2020-06-12T20:12:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T15:17:54.000Z (over 2 years ago)
- Last Synced: 2025-04-14T15:56:14.072Z (about 1 year ago)
- Topics: il
- Homepage:
- Size: 10.7 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
}
```