|
|
|
|
|
by qznc
3106 days ago
|
|
Yes, D picked the wrong default. That is just a minor annoyance though. Add "@safe:" to the top of all source files. Check for that in your CI. You are safe now. The advantage is that you ignore the issue initially. No fighting the type system like in Rust, but easy coding like in Python. Later, when you need your code to be reliable, add annotations and fix problems with compiler guidance. |
|