Untyped Programming Languages are Far More Convenient

By 1 szul on February 08, 2007

Embed Claim Make a related claim

Discussion (9)

http://singpolyma.net/

1 Stephen Paul Weber who agreed, says

More convenient... but necessarily better in the long run

Make a related claim about 1 year ago (link)
http://geeksam.videntity.org/

3 Sam Livingston-Gray who disagreed, says

Python and Ruby (and, I assume, Perl) are not, in fact, untyped languages. They're very strongly typed at runtime. Dynamic typing is far more convenient (even counting the time I spend writing unit tests); having no types at all would be... well, assembly programming.

Make a related claim about 1 year ago (link)
http://michael.szul.name/

1 szul who agreed, says

You say "tomato"... I say "untyped."

"Ruby is a pure, untyped, object-oriented language..." - from Programming Ruby by Dave Thomas and Andy Hunt.

Make a related claim about 1 year ago (link)
http://devnull.myopenid.com/

4 Dominicus who disagreed, says

I think you're saying tomatoe, not tomato.

The fact that you've quoted from Programming Ruby does not make your assertion correct. I couldn't find any reference to that book saying Ruby is a pure, untyped, object-oriented language, only that it is object-oriented.

Make a related claim about 1 year ago (link)
http://michael.szul.name/

1 szul who agreed, says

You can find the reference to it here:
http://www.pragmaticprogrammer.com/articles/ddj_ruby.pdf

It's on page 2, second paragraph...

Make a related claim about 1 year ago (link)
http://devnull.myopenid.com/

4 Dominicus who disagreed, says

So untyped is synonymous with dynamically typed now? When did this happen? With the 'Programming Ruby' authors?

Ahh, the fluidity of language.

Make a related claim about 1 year ago (link)
http://fred.myopenid.com/

1 Frederic Wenzel who disagreed, says

True. Dynamically typed doesn't mean it's untyped. Also, I believe that Python is following a very good approach with being dynamically but strongly typed. What the OP meant with untyped is probably dynamically and weakly typed which still doesn't make variables typeless, it only allows them to change their type willy nilly.

Untyped is, as noted above, Assembler, which happens to handle characters and numbers exactly the same and if *you* don't know what they are at any given time, it doesn't know either, nor does it care. That'd be not convenient but rather annoying ;)

Make a related claim about 1 year ago (link)
http://thingles.myopenid.com/

2 Jamie Thingelstad who agreed, says

I think they are convenient, but unfortunately I also think they are more susceptible to bugs.

Make a related claim 12 months ago (link)
http://tablizer.myopenid.com/

1 Tablizer who agreed, says

I prefer untyped. They are more WYSIWYG and have less unexpected stealth side-effects caused by the hidden type-flags that typed languages use. But there are not many common languages that are fully untyped. Even though some are untyped at the scalar level, they still use a hidden type flag to mark scalars versus structures (like arrays). But untyped at the scalar level is close enough.

Make a related claim 8 months ago (link)
Sign in in to leave a comment.