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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c89924cb7c8c5a42 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-13 00:10:52 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!wn11feed!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi_feed4!attbi.com!sccrnsc02.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Who said strong typing is a benefit? References: <8db3d6c8.0210121718.25cf55e4@posting.google.com> X-Newsreader: Tom's custom newsreader Message-ID: <%%8q9.21249$rz6.2550@sccrnsc02> NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc02 1034493051 12.234.13.56 (Sun, 13 Oct 2002 07:10:51 GMT) NNTP-Posting-Date: Sun, 13 Oct 2002 07:10:51 GMT Organization: AT&T Broadband Date: Sun, 13 Oct 2002 07:10:51 GMT Xref: archiver1.google.com comp.lang.ada:29737 Date: 2002-10-13T07:10:51+00:00 List-Id: > write code faster in matlab than in a strongly typed language such as Ada asdfghjkl;' Bet you can't write code faster than dragging your finger across the keyboard. And I could make an interpreter that did something as a result. But the real question is not how fast you can write, but how fast you can write a program that does what you want. Strong typing helps do *that* fast. As already pointed out, there's also the little matter of the difference between weak vs strong typing and static vs dynamic typing. > performing operations no matter what the actual data > types turn out to be at run-time" What does the interpreter do when you add a 3D vector to a 2D vector, or do "if A > B" where A and B are complex, etc. I don't doubt that it will "perform operations no matter what" - I'm just curious what those operations might turn out to be.