Prebol problem or misunderstanding?
[1/3] from: reboler:ifrance at: 17-Dec-2002 21:53
Hi, List
Just playing around with Prebol... I'am stopped by an unexpected behaviour.
This is my test that is almost coming from the documentation.
REBOL [Title: "Example"]
big-version: false
#if [big-version] [
#include %special.r
#include %features.r
]
And this is the problem (odd.r is the source)
>> do/args %prebol.r [%odd.r %test.r]
** Script Error: big-version has no value
** Where: do-expr
** Near: big-version
Any clue, or worth being reported to feedback the proper way?
Patrick
[2/3] from: nitsch-lists:netcologne at: 18-Dec-2002 8:38
pat665 wrote:
>Hi, List
>
>Just playing around with Prebol... I'am stopped by an unexpected behaviour.
>This is my test that is almost coming from the documentation.
>
> REBOL [Title: "Example"]
>
> big-version: false
>
#do[big-version: false] ; there is build-time and runtime. only
#something is executed at runtime, rest only copied.
[3/3] from: reboler:ifrance at: 18-Dec-2002 11:24
Hi Volker,
Volker said
>#do[big-version: false] ; there is build-time and runtime. only
>#something is executed at runtime, rest only copied.
That make sense, however since my code came from the documentation, I think
it's worth posting to feedback.
Patrick