On Wed, May 30, 2012 at 6:00 AM, Moritz Lenz <mor...@faui2k3.org> wrote: > > I'd still start with simple script files, because that's what most > programmers are most familiar with. > I'd do them in Huffman order; the interpreter involves the least typing to start, and it's useful for demonstrating concepts. Usually, an abstract principle needs some specific examples to clarify it.
> Where would you put nested data structures and custom classes? Assuming you're talking about things like arrays of arrays, I'd put them between structured and unstructured data. A simple table of results by month can get into that sort of structure. Custom classes are definitely around the "higher order".