Andreas Kochenburger wrote:
> Is D really suitable for systems programming, despite its inline assembler?
>
> What is the smallest executable size in Win or Linux?
>
> Where can I find a minimum stub?
The smallest exe size I got on win with dmd v.166 is 65 KB using
---
int main()
{
return 0;
}
---