Curtis Hall wrote:
Ok, update. Have Pirate and Parrot running smoothly now. Had Python
version
2.4, which Pirate didn't like. Had to link it to my 2.3 version. Had
to mess
with PATHing a bit and now I'm all set.
Wanted to introduce myself. I'm a senior here at the UofA in Tucson,
AZ working
in comp sci. I'm going to be working on Pirate so as to generalize
the IMC
emitter, plus work on some of the constructs such as slices, floor
divisions,
power operators, and to-string operators. Hopefully, in that order,
and by the
end of summer. I'm learning as much as I can about Pirate and Parrot
and would
welcome any advice or expertise.
Curt
_______________________________________________
pirate mailing list
[EMAIL PROTECTED]
http://cornerhost.com/mailman/listinfo/pirate
I've been working on a python compiler also, feel free to take a look,,
svn co http://svn.openfoundry.org/pyparrot languages/python/pyparrot
My current boggle is how to handle the self parameter to method functions.
You can do things like this in python
def foobar( arg1, arg2 ):
print arg1, arg2
class A():
self.__add__ = foobar
aa = A()
print aa + 5
I'm happy to help out and discuss.
Kevin Tew