←back to thread

611 points LorenDB | 2 comments | | HN request time: 0s | source
Show context
markus_zhang ◴[] No.43908006[source]
What if we have a C that removes the quirks without adding too much brain drain?

So no implicit type conversions, safer strings, etc.

replies(10): >>43908024 #>>43908037 #>>43908071 #>>43908130 #>>43908141 #>>43908193 #>>43908341 #>>43908840 #>>43909556 #>>43913099 #
1. mamcx ◴[] No.43908141[source]
If you can live without much of the ecosystem (specially if has async) there is way to write rust very simple.

The core of Rust is actually very simple: Struct, Enum, Functions, Traits.

replies(1): >>43913753 #
2. monkeyelite ◴[] No.43913753[source]
But unfortunately you will encounter async in libraries you want to use, so this approach is difficult