The Artima Developer Community
Sponsored Link

Weblogs Forum
CEDSimply - Reading List for Language Designers?

11 replies on 1 page. Most recent reply: Sep 3, 2006 12:33 AM by Andy Dent

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 11 replies on 1 page
Andy Dent

Posts: 165
Nickname: andydent
Registered: Nov, 2005

CEDSimply - Reading List for Language Designers? (View in Weblogs)
Posted: Jul 1, 2006 10:21 PM
Reply to this message Reply
Summary
Given a solid OO education and C++ background but having missed some of the traditional CS language theory, what is a minimum required reading list, especially when designing a non-traditional language?
Advertisement

I'm designing CEDSimply to be readable and useful for a lot of non-programmers and people not necessarily wanting to work in English.

This has taken me into some interesting places, playing with Forth and Lisp but I'm now trying to round out my missing education. I do not want to spend the next couple of years doing nothing but reading but I also think there is some core stuff I should have covered to have any credibility in language design and, more importantly, to avoid wasting time reinventing concepts.

I'm currently studying Structure and Interpretation of Computer Programs and enjoying the slightly older SICP Video Lectures courtesy of Kinoma Producer, transcoded to play on my Palm Zire71. As they are mainly talk, they are good for traffic :-)

On the list next are Marvin Minsky's Frames and the Haskell and Clean programming languages.

Suggestions gratefully accepted!


Kay Schluehr

Posts: 302
Nickname: schluehk
Registered: Jan, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 2, 2006 1:20 AM
Reply to this message Reply
CTM by Peter van Roy and Seif Haridi:

http://www.amazon.co.uk/gp/product/0262220695/026-7381621-3330036?v=glance&n=266239

Besides this interesting new stuff is always discussed at "Lambda the Ultimate"

http://lambda-the-ultimate.org/

See also the "Getting Started" thread that discusses the question you are asking for:

http://lambda-the-ultimate.org/node/492

Matt Hellige

Posts: 24
Nickname: hellige
Registered: Dec, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 2, 2006 11:20 PM
Reply to this message Reply
I'd second the Van Roy and Haridi book Concepts, Techniques and Models of Computer Programming. Yes, it's big and expensive, but it's worth it. In fact, many people have suggested it as a successor to Abelson and Sussman. Definitely give it a chance.

Joe Cheng

Posts: 65
Nickname: jcheng
Registered: Oct, 2002

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 3, 2006 10:56 AM
Reply to this message Reply
Programming Language Pragmatics by Michael L. Scott:
http://www.amazon.com/gp/product/1558604421/002-7451591-5245663?v=glance&n=283155

Less theory, more nuts-and-bolts, as the title implies.

Kannan Goundan

Posts: 18
Nickname: cakoose
Registered: Nov, 2005

"Types and Programming Languages", by Benjamin Pierce Posted: Jul 3, 2006 2:50 PM
Reply to this message Reply
"Types and Programming Languages", by Benjamin Pierce.

The most important thing to remember is that the book is valuable even if you aren't able to follow all the theory (I ended up skipping all the longish proofs).

It was nice to find an organized and modular way of looking at the large cloud of programming language features that was aware of. It'll definitely help you navigate through the tangled web of inaccurate information available on the web (Wikipedia, blog postings, etc.).

Christopher Diggins

Posts: 1215
Nickname: cdiggins
Registered: Feb, 2004

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 4, 2006 3:25 PM
Reply to this message Reply
I recommend the Design and Evolution of C++ by Bjarne Stroustrup.

Andy Dent

Posts: 165
Nickname: andydent
Registered: Nov, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 6, 2006 12:40 AM
Reply to this message Reply
The thread sparked by the LX developer's request for language ideas http://slashdot.org/developers/01/04/27/1846258.shtml has a telling quote Anyone writing a language today who isn't familiar with Scheme, Haskell, and ML may as well throw in the towel right now. which aligns with the advice I've already received except it throws ML into the mix.

(The http://www.mozart-oz.org/ Mozart system of the highly-recommended Concepts, Techniques, and Models of Computer Programming does not seem to be related to the LX language associated http://mozart-dev.sourceforge.net/ as far as I can tell. Maybe it's just a coincidental geek choice of project names? )

I've already read about ML's influence on Stroustrup in The Design and Evolution of C++, providing ideas such as parameterized types and exception handling by catching objects.

Should I consider more study of ML, after Scheme, OZ and Haskell?

Achilleas Margaritis

Posts: 674
Nickname: achilleas
Registered: Feb, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 6, 2006 12:48 AM
Reply to this message Reply
> <p>I'm designing CEDSimply to be readable and useful for a
> lot of non-programmers and people not necessarily wanting
> to work in English.</p>

Is there room for one more programming language? there are 100s out there, all 90% similar. I've been reading CS material for years, I have read quite a lot of books and played with many languages, but I have to admit I couldn't come up with a new idea that will increase productivity and decrease cost. Maybe it is just me, but every new language out there seems to be a very tiny evolution of the previous languages without significant benefits compared to the previous version.

Andy Dent

Posts: 165
Nickname: andydent
Registered: Nov, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Jul 6, 2006 3:31 AM
Reply to this message Reply
> Is there room for one more programming language?

I hope not - I really hope that the research phase of CEDSimply design allows me to put up an article explaining why language X is the answer.

However, there are several issues that as far as I can tell, current programming languages don't solve. Maybe the solution is just a front-end to one of them (possibly Python). These are issues affecting professional programmers but are even more important to non-professionals.

1) flexibility of language, including the ability to use iconic representations (glyphic languages), all the way through to redefining the core reserved words, and being able to exchange such multi-lingual code with someone else using a different language.

2) dealing with rich and sloppy data such as complex XML-based interchange of industrial and scientific data, see http://www.seegrid.csiro.au/

3) being a good fragment language, where meaningful bits of code can be embedded in a wider context

Much of the useful and fun programming of the future is going to be about fragments in user space - I want to enable that.

Contexts, Events and Data - Simply.

Todd Blanchard

Posts: 316
Nickname: tblanchard
Registered: May, 2003

Re: CEDSimply - Reading List for Language Designers? Posted: Aug 25, 2006 1:15 AM
Reply to this message Reply
> I recommend the Design and Evolution of C++ by Bjarne
> Stroustrup.

I presume you mean as a cautionary tale.

Dive into the Smalltalk world and join the Squeak/Seaside community. All the really new ideas start there these days.

Andy Dent

Posts: 165
Nickname: andydent
Registered: Nov, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Aug 25, 2006 10:20 AM
Reply to this message Reply
I have dabbled in various Smalltalks over the years but it was never something I could make a living from in Perth.

I have done one substantial Cocoa project, necessitating the use of Objective-C but that doesn't mean I think it is something that should be inflicted on others, particularly the non-professional programmers at whom I'm aiming CEDSimply.

I am not convinced as to the usability of Squeak. Interesting and powerful, yes.

Smalltalk suffers from the same aesthetic problems as Lisp and Forth. You can become a habituated reader but there's a certain initial ugliness to get over.

It is certainly way over on the Python side away from the C++ end when it comes to end-user readability :-)

Andy Dent

Posts: 165
Nickname: andydent
Registered: Nov, 2005

Re: CEDSimply - Reading List for Language Designers? Posted: Sep 3, 2006 12:33 AM
Reply to this message Reply
Thanks to the contributors to this list and an urgent need for some (virtual) retail therapy, I now have a reading list sitting there waiting for me to make time but already impressing me with just a few quick skims.

yes, I bought :

Concepts, Techniques and Models of Computer Programming

Programming Language Pragmatics

Foundations of Object-oriented Languages

The Haskell School of Expression

and a few other indulgences...

Flat View: This topic has 11 replies on 1 page
Topic: CEDSimply - Reading List for Language Designers? Previous Topic   Next Topic Topic: The Two Roads to Ajax

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use