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,4da4573d129f824a,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-01-08 16:00:11 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!elnk-pas-nf1!elnk-nf2-pas!newsfeed.earthlink.net!attbi_feed3!attbi.com!attbi_s01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: style Q: type .. is new String; X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 67.161.24.134 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s01 1073606409 67.161.24.134 (Fri, 09 Jan 2004 00:00:09 GMT) NNTP-Posting-Date: Fri, 09 Jan 2004 00:00:09 GMT Organization: Comcast Online Date: Fri, 09 Jan 2004 00:00:10 GMT Xref: archiver1.google.com comp.lang.ada:4231 Date: 2004-01-09T00:00:10+00:00 List-Id: Though I create new types regularly for numeric variables, I've only rarely used other than the standard String type. That saves doing type conversions, but it would be nice to have strong type checking help me detect errors. Do other folks use new String types a lot and find it works out well?