www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Light-weight runtime

reply =?UTF-8?B?0JLQuNGC0LDQu9C40Lkg0KTQsNC0?= =?UTF-8?B?0LXQtdCy?= writes:
I want light-weight runtime !

How to ?
Jun 28 2020
next sibling parent aberba <karabutaworld gmail.com> writes:
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
Jun 28 2020
prev sibling parent Kagamin <spam here.lot> writes:
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.
Jun 29 2020