[ANN] Boo 0.4.3 - python-like language for .NET/Mono

Istvan Albert ialbert at mailblocks.com
Mon Oct 11 17:34:43 EDT 2004


Doug Holton wrote:

>  That makes it faster (100 times faster on a recent Mandelbrot test)

Just out of curiosity

--- speed.py ---
x = []
for i in range(1000):
   for j in range(1000):
     x.append(j)

--- speed.boo ---
x = []
for i in range(1000):
   for j in range(1000):
     x.Add(j)

---

dino /home/down/boo/bin $ time python speed.py
real    0m2.217s

---

dino /home/down/boo/bin $ booc speed.boo
dino /home/down/boo/bin $ time speed.exe
real    0m2.417s

This does not appear to indicate that boo is any faster
than python...

Istvan.



More information about the Python-list mailing list