On 19-Aug-99 Tom wrote:
>
> Why C/C++? Because I'm too lazy to learn Perl :)
>
So look into Python. All the glory of C++ w/o the mess. Honest, it is worth
the week of effort.
class Foo:
def __init__(self):
self.i = 1
self.string = 'hi'
f = Foo()
print f.i
print f.string