[Tutor] Not Really Questions
Tim Johnson
tim at johnsons-web.com
Mon Jun 5 03:21:04 CEST 2006
* Hugo González Monteverde <hugonz-lists at h-lab.net> [060604 13:04]:
>
> Exactly, everything else other than programming. Zero indexed arrays are
> the norm in everything but moronic old VB. I guess it's just a defacto
> standard now.
I make equal parts of my income from writing python code and from
writing code in rebol. Rebol starts indexes with 1. It also uses the
'first function (like lisp). This has prompted me to write and use
the following:
def first(v):
return v[0]
(-: Regardless of where you start counting, there you are!
> OOP is a rare beast to me: it makes suitable problems very very easy
> (think about GUI programming without OOP) and unsuitable problems
> extremely convoluted. I guess it's just the fact that it is a paradigm
> and not just a programming technique.
comparing rebol and python - rebol is more productive, line for line,
from my experience. But because of python's OOP engineering it, it
scales better, enabling more maintainable code in larger projects.
Consequently, I use python for big projects, rebol for small.
"""
The right tool for the right job
"""
tim
--
Tim Johnson <tim at johnsons-web.com>
http://www.alaska-internet-solutions.com
More information about the Tutor
mailing list