[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

tail call elimination

Hrvoje Blazevic

1/27/2008 11:43:00 PM

Does ruby implement tail call elimination?

-- Hrvoje
2 Answers

Phrogz

1/27/2008 11:47:00 PM

0

On Jan 27, 4:42 pm, Hrvoje Blazevic <hrvoje.blaze...@ri.t-com.hr>
wrote:
> Does ruby implement tail call elimination?

The Internet knows:
http://www.google.com/search?q=ruby...

Paul Brannan

2/21/2008 2:48:00 PM

0

On Mon, Jan 28, 2008 at 08:49:59AM +0900, Hrvoje Blazevic wrote:
> Does ruby implement tail call elimination?

The ruby-optimizer module used to support this, but it only works on
1.6.x:

http://raa.ruby-lang.org/project/ruby-...

Might be an interesting project for someone to resurrect.

Paul