|
|
|
|
|
by anon-3988
357 days ago
|
|
Can Zig recompile itself if I change a config in production? I am talking about this ```
python program.py --config <change this>
``` It is basically a recompilation of the whole program at every execution taking into account the config/machine combination. So if the config contains no keyword for lookup, then the program should be able to be compiled into a noop. Or if the config contains keyword that permits a simple perfect hash algorithm, then it should recompile itself to use that mechanism. I dont think any of the typical systems programming allows this. |
|