Top whole program optimizations in .NET 8 native AOT
migeel.sk1 pointsby MStrehovsky0 comments
$ echo 'System.Console.WriteLine("Hello world");' >hello.cs
$ bflat build hello.cs
$ ./hello
Hello world
The compiler can also crosscompile - just pass `--os` and `--arch` to specify the architecture.
C#: 945 kB Go: 2174 kB
Both are EXEs you just copy to the machine, no separate runtime needed, talks directly to the OS.