[REBOL] Evaluation Re:(14)

2000-01-11 Thread lmecir
Hi, Gabriele, you wrote: The point I was mainly interested in was this. Being REBOL strongly based on blocks, adding overhead could not be an option. Furthermore, once we have REBOL/View or REBOL/Media, performance can become important in some cases (as can be now with CGI, for example).

[REBOL] Evaluation Re:(14)

2000-01-11 Thread lmecir
Hello, Rebols, did anyone notice the time differences like this?: st/start a: empty-il for i 1 2 1 [a: prepend i a] st/stop == 0:00:03 st/start a: copy [] for i 1 2 1 [insert a i] st/stop == 0:01:36 NB Insert is native as opposed to Prepend written in Rebol the code follows: ; An

[REBOL] Evaluation Re:(14)

2000-01-10 Thread joel . neely
[EMAIL PROTECTED] wrote: The point I was mainly interested in was this. Being REBOL strongly based on blocks, adding overhead could not be an option. Furthermore, once we have REBOL/View or REBOL/Media, performance can become important in some cases (as can be now with CGI, for example).