Thread overview
Light-weight runtime
Jun 28, 2020
aberba
Jun 29, 2020
Kagamin
June 28, 2020
I want light-weight runtime !

How to ?

June 28, 2020
On Sunday, 28 June 2020 at 07:09:53 UTC, Виталий Фадеев wrote:
> I want light-weight runtime !
>
> How to ?

If you have access to Google translate or any equivalent tool, you may use it to write in Russian language and copy+paste the English here. I think that'll really help.

I always give deep respect to people with different native languages who're trying really well to write English here. Considering someone of us learnt and wrote English in school but still suck at it. My biggest problem is typos.


------;;::
Now I think your question was discussed recently here https://forum.dlang.org/thread/gxtgbthyytukmqmzptqz@forum.dlang.org
June 29, 2020
On Sunday, 28 June 2020 at 07:09:53 UTC, Виталий Фадеев wrote:
> I want light-weight runtime !
>
> How to ?

Runtime provides language features that rely on extra code. Removing that code from runtime means to give up on corresponding language features. This way you can implement only features you want or even reduce runtime to almost zero. You can start by not linking your code with druntime and see what's missing and see if you can evade or implement the feature.