Design
letters.txt
Associated article: Letters
Tags: Design
Letter to the editor by Tom Ruby in which he discusses John Swartz's article "Constructing Combinations Using LISP" (DDJ, November 1996).
_Letters to the Editor_ by Tom Ruby MODULE Lisp2 ; (* Constructing combinations without LISP, or a makelist operation which checks for duplicate combinations *) IMPORT FIO ; (* For getting the output out *) TYPE Ball = (Blue, Red, White, Green, Overflow ) ; Counter = ARRAY[ 0 .. 8 ] OF Ball ; ...


