Josh Barrett scripsit: > I mean, I know call/cc is fast in chicken, but is it that fast, or is > F-operator using some chicken specific implementation that I don't know > about?
No, it isn't. Calling an escape procedure from call/cc is as fast in Chicken as calling a "normal" procedure (which is to say somewhat slower than in comparable Schemes like Gambit), so Oleg Kiselyov's portable implementation works well. There are only a few Chicken-specific touches, as you can see by loading the code with "chicken-install -r F-operator". -- John Cowan http://www.ccil.org/~cowan [email protected] By Elbereth and Luthien the Fair, you shall have neither the Ring nor me! --Frodo _______________________________________________ Chicken-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/chicken-users
