From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail From: Paul Rubin Newsgroups: comp.lang.ada Subject: Re: Intervention needed? Date: Sat, 23 Mar 2019 14:38:04 -0700 Organization: A noiseless patient Spider Message-ID: <87y3552rwj.fsf@nightsong.com> References: <6e1977a5-701e-4b4f-a937-a1b89d9127f0@googlegroups.com> <6f9ea847-2903-48c8-9afc-930201f2765a@googlegroups.com> <87zhpq33h1.fsf@nightsong.com> <5dbd0a83-2d28-4c39-a973-2f0365d93846@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: reader02.eternal-september.org; posting-host="a3293d7aaa3f52773978cfad7be5a8b2"; logging-data="5705"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19sCsLrjq18DzLUPuF1NCaz" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) Cancel-Lock: sha1:wRy8hUHASvrQK3seM8z+aZQRx68= sha1:tLJquN06smeJt6nfeAAS6Ayk4js= Xref: reader01.eternal-september.org comp.lang.ada:55944 Date: 2019-03-23T14:38:04-07:00 List-Id: "Jeffrey R. Carter" writes: > From what I've read about Rust, it's a fairly typical C-family > language, except for the borrow rules. Pointers (by whatever name and > with whatever restrictions) are pervasive. I haven't done any Rust yet, but "modern" C++ style avoids pointers and uses references instead. One can now (post C++11) write idiomatic C++ code with few if any pointers.