Re: Light-weight runtime

2020-06-29 Thread Kagamin via Digitalmars-d-learn

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.


Re: Light-weight runtime

2020-06-28 Thread aberba via Digitalmars-d-learn

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/gxtgbthyytukmqmzp...@forum.dlang.org


Light-weight runtime

2020-06-28 Thread Виталий Фадеев via Digitalmars-d-learn

I want light-weight runtime !

How to ?