Linked by Thom Holwerda on Wed 11th Apr 2007 16:35 UTC, submitted by ShlomiFish
Thread beginning with comment 229963
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[3]: My issues with this article
by japh on Fri 13th Apr 2007 06:24
in reply to "RE[2]: My issues with this article"
"I spend most of my time trying to find the typo in the variable name."
You do?
Then you obviously didn't write Perl, where 'use strict;' will force you to declare variables before using them. I usually use an environment that'll help me with the variables, like eclipse/pydev. Sure, it's a little less helpful than for Java due to the dynamic nature of Python, but it'll find most things for me.
I too struggle with writing complicated things in what some people call "scripting languages", but the difficult ones are bash/awk and the likes, not the dynamically typed languages like Perl/Python/Ruby. Misspelled variable names are very rarely a problem in those.
But that might just be me.




Member since:
2005-12-31
If I write a complicated program in a scripting language, I spend most of my time trying to find the typo in the variable name. Compilers make learning how to program MUCH easier.