From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on ip-172-31-65-14.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 Path: eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Ben Bacarisse Newsgroups: comp.lang.ada Subject: Re: Java and Python have just discovered "record" type finally after 40 years. Date: Sun, 14 May 2023 11:37:21 +0100 Organization: A noiseless patient Spider Message-ID: <87fs7zryfy.fsf@bsb.me.uk> References: MIME-Version: 1.0 Content-Type: text/plain Injection-Info: dont-email.me; posting-host="9cb35b1af2d15e54e9a838df629b6137"; logging-data="2748002"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/+DqaITvjx7O+7KGM/C70ipW0Yi+JFhmU=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) Cancel-Lock: sha1:GohnceNPAWXJfW32QtW+i9XFgUU= sha1:hulvVLoTeE7OZDHkerjXnYokXnM= X-BSB-Auth: 1.d4245f31ebd2c3659e90.20230514113721BST.87fs7zryfy.fsf@bsb.me.uk Xref: news.eternal-september.org comp.lang.ada:65230 List-Id: "J-P. Rosen" writes: > Of course, in LISP there is only one structure, for data and programs > alike: the list! LISP had S-expressions -- pairs of atoms or other S-expressions. A list was just a special case. Many other structures could be built using S-expressions. An important one was that association list -- a list of (key . value) pairs that was often used very much like a record type (though it's quite a different beast). -- Ben.