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!reader02.eternal-september.org!.POSTED!not-for-mail From: Paul Rubin Newsgroups: comp.lang.ada Subject: Re: Ada: A beginners experience Date: Sat, 14 Jul 2018 08:42:43 -0700 Organization: A noiseless patient Spider Message-ID: <87muutddsc.fsf@nightsong.com> References: <1d3743b1-1a36-429d-92c7-9ae0e7c16e63@googlegroups.com> <87fu0m7ak0.fsf@nightsong.com> <6febe5d6-0339-4da5-afe5-9af4e2255597@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: reader02.eternal-september.org; posting-host="085159b3d3cab45d2544bb10ac4438fd"; logging-data="26733"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18YxniJFBejBBCBjTUszQKT" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux) Cancel-Lock: sha1:/9grIN4tucu2iZh0badE7IR/6BE= sha1:UTnHjPbF1p677R/TPJ199YovUZ8= Xref: reader02.eternal-september.org comp.lang.ada:53812 Date: 2018-07-14T08:42:43-07:00 List-Id: Jere writes: > Languages like Ada and C++ can have a lot of overhead if used like one > is writing a desktop application. However, Ada (and C++) has a lot of > those features at either no cost or almost no cost. I meant overhead in terms of source code verbosity, not computer cycles. E.g. a Python "hello world" program: print("hello, world") the same thing in Ada is much more code. If you look on rosettacode.org the Ada examples are almost always much larger than the Python counterparts.