in reply to Perl as one's first programming language
Starting on Scheme makes a lot of sense to me - I wish that's how I'd started, really. The interactive prompt is a great fit for learning along with a book and there's some great beginner materials out there for Scheme. The one downside is that for most working programmers Scheme is going to be essentially useless.
Starting with C, which is what I did, also has some strong points. Like Scheme it's a little langauge - K&R covers everything you need to know in around 200 pages. Better yet there's just so much C code around to learn from - pretty much everything that a computer can do has been programmed in C. And it's really useful in that we all work on C-based systems (like Perl and Linux, say) every day. Knowing how to read and patch them is a great tool, even if your every-day work happens at a higher level.
-sam
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Perl as one's first programming language
by sasdrtx (Friar) on Apr 08, 2008 at 00:51 UTC | |
by samtregar (Abbot) on Apr 08, 2008 at 02:33 UTC |