Rebol is a modern interpreted language where code is data. It isn't object oriented, but has objects. It isn't a functional language but has first class functions. There are virtually no syntax rules or immutable keywords, making it ideal for developing domain-specific "dialects".
3
votes
1answer
21 views
Converting an issue to a string
In Rebol 2 you can convert an issue to a string with a simple to string!
For example,
>> to string! #12345-12345
== "12345-12345"
In Rebol 3 the behaviour is different.
For example,
...
0
votes
1answer
35 views
How to start the Rebol REPL in a context besides the System context?
If you run a script in Rebol and say something like print {Hello}, you end up calling the system version of PRINT
>> bind? 'print
== make object! [
system: make object! [
product: ...
0
votes
0answers
33 views
How to capture words bound in outer context when creating new context?
Let us say I have a situation like this:
;; Capture whatever the print word pointed to into a variable
outer-print: :print
foo: context [
;; within foo, override print and implement in terms of ...
4
votes
6answers
72 views
How do I convert set-words in a block to words
I want to convert a block from block: [ a: 1 b: 2 ] to [a 1 b 2].
Is there an easier way of than this?
map-each word block [ either set-word? word [ to-word word ] [ word ] ]
2
votes
1answer
25 views
How does R3 use the Needs field of a script header? Is there any impact on namespaces?
I'd like to know the behaviour of R3 when processing the Needs field of a script header and what implications for word binding it has.
Background. I'm currently trying to port some R2 scripts to R3 ...
3
votes
2answers
45 views
Minimise namespace pollution when copying data with parse
When using parse to extract values from data I often end up declaring globals to capture the copy data.
For example,
numbers: none
rule: [ thru 5 copy numbers to 10 to end ]
parse [ 1 2 3 4 5 6 7 8 9 ...
2
votes
1answer
42 views
How do I show which refinements are available for a word?
The date datatype has a great set of refinements, for example:
t: now
t/second
== 21
t/month
== 4
How do I get a list of the available refinements for a word like t?
4
votes
1answer
57 views
How to split a string at a particular character in Rebol
I haven't figure out how to split a string in a cleaner way.
ref: copy/part (find line "#") -15
rest2: copy/part (skip (find line "#") 1) 450
-15 is for going to the beginning and 450 to go to ...
2
votes
3answers
55 views
Using a nested rule with parse
I am trying to parse some data which is formatted as follows.
data: [a b x b x x b a a x x b b x ]
What I need it to extract the a's and b's in order and perform a different action for each a and ...
2
votes
2answers
77 views
What is the closest match to this Clojure map/apply expression, in Rebol?
While comparing functional expressions in Clojure side-by-side with Rebol, I happened onto this expression from the examples of apply used in combination with map, at clojure-docs.org:
user=> (map ...
3
votes
3answers
85 views
Why allocate a variable in rebol?
I found a line like this in some Rebol code:
dups: make block! 10000
Why would you use pre-allocation in Rebol?
What's wrong with just writing:
dups: copy []
4
votes
2answers
68 views
rebol getting the line in an area by the caret position
How do I get the line in an area where the carret is positionned ?
For example, by putting the caret on line 0816 (anywhere on the line), how do i get the line "0816 LEANYER NT DARWIN DELIVERY CENTRE" ...
6
votes
1answer
57 views
Rebol, extensions and function naming
I am working on some extensions for Rebol 3 (posix/fann/math).
To avoid global namespace pollution, I am exporting the functions with a simple prefix source identifier. For example: POSIX-FORK for ...
2
votes
1answer
26 views
Type declarations on REBOL objects
I know you can type declare arguments and returns on functions
some-func: function [
"some func"
number [ integer! ]
] [
result [ integer! ]
] [
help number
return ...
1
vote
1answer
34 views
How can I define APPEND for Rebol3 PORT?
I'm working on scheme in Rebol3 and I'd like to add APPEND action. However, adding APPEND actor to the scheme does nothing, result of append my-scheme://localhost foobar is my-scheme://localhostfoobar ...
1
vote
2answers
37 views
Why does the rebol interpreter return different results?
Consider:
>> print max 5 6 7 8
6
== 8
The documentation states that max only takes two arguments, so I understand the first line. But from the second line it looks like the interpreter is ...
1
vote
1answer
65 views
How to implement UDP scheme in Rebol3
As far as I understand source code, net device is already prepared fot UDP, but how to make UDP scheme?
3
votes
2answers
108 views
Sublime Text 2 plugin for REBOL
Are there any up to date REBOL plugins for Sublime Text 2? I'm using a TextMate one from http://www.ross-gill.com/page/TextMate_and_REBOL, but it's pretty old. Also, for learning REBOL/Red what's a ...
3
votes
2answers
63 views
Users/Passwords in Rebol 3 Schemes
In the port spec below I'm attempting to parse a URL to determine user, pass, host and path. User/Pass values are optional, but I'd like to set default values for each if not present.
However if the ...
1
vote
1answer
52 views
REBOL Change the backdrop image and text
REBOL
I currently trying to redo a small app I made in Delphi.
This application displays a background image among n and a text among n, but I cannot change the image or the text, the change of image ...
0
votes
1answer
34 views
Getting a reference to an enclosing list/block in Rebol
Given a sublist is there a way to get a reference to it's parent/enclosing list/block? For example:
fs: [
usr [
local [
bin []
]
share []
]
bin []
]
l: fs/usr/local ;grab a sublist
p: ...
3
votes
4answers
141 views
How well does Rebol scale in an FCGI setup?
I plan to write a fairly decent sized web application in Rebol (CGI on Apache 2 at the moment) but the initial performance tests have been very discouraging. I get a measly 4-5 requests/sec when I run ...
1
vote
1answer
40 views
Why are the 'context' and 'object' functions in Rebol different, but essentially the same?
On the one hand we have:
>> source object
object: make function! [[
"Defines a unique object."
blk [block!] "Object words and values."
][
make object! append blk none
]]
For ...
2
votes
2answers
82 views
How do I pick elements from a block using a string in Rebol?
Given this block
fs: [
usr [
local [
bin []
]
share []
]
bin []
]
I could retrieve an item using a path notation like so:
fs/usr/local
How do I do the same when the path is a string?
...
5
votes
2answers
168 views
How to use Unicode codepoints above U+FFFF in Rebol 3 strings like in Rebol 2?
I know you can't use caret style escaping in strings for codepoints bigger than ^(FF) in Rebol 2, because it doesn't know anything about Unicode. So this doesn't generate anything good, it looks ...
3
votes
1answer
96 views
For rebol3: Want to get started with native extensions on linux. How do I write a hello-world?
I know how to write some 100 lines C, but I do not know how to read/organize larger source like Rebol. Somewhere was a tutorial with hostkit and dll, but it seems R3 is now statically linked. So I do ...
1
vote
2answers
65 views
Basic Input from the Command Line in Rebol
I am currently in the process of learning Rebol.
In other languages I know, I can read input from the command line, for example in Java:
Scanner sc = new Scanner(System.in)
sc.nextLine();
In C#
...
2
votes
2answers
49 views
How can I show the cents with R3 money?
The online documentation promises this
probe to-money 123
$123.00
http://www.rebol.com/r3/docs/datatypes/money.html
I get this
probe to-money 123
$123
6
votes
2answers
44 views
Why does ALSO usage lead to different results in R2 and R3?
This code returns -1 for R3 and +1 for R2. I'd like to know what I am doing wrong.
f: func [] [
also return 1
return -1
]
f
3
votes
2answers
78 views
How do I perform benchmark comparisons on a series of functions in Rebol?
I recently enquired about the fastest/most efficient way to count newlines in RebolāI now need to ascertain which approach is best in a given situation.
Some example scenarios: Short Text, Fewer ...
5
votes
1answer
140 views
What is the 'reword' function in Rebol and how do I use it?
I saw someone mention the reword function today, but documentation for it is very brief. It looks like shell script environment variable substitution, or maybe regex substitution, but different. How ...
4
votes
2answers
57 views
Save a value to a block instead of the word label that represents it
I am trying to save a few string values into a block so that I can save that block to a text file. I am getting these values from a form using VID.
One way to do this would be to simply save strings ...
2
votes
1answer
35 views
Rebol REPL Multi line if statement
I tried to run a multi line while statement in the Rebol REPL (aka, command line),
like in http://www.rebol.com/docs/expert-intro.html
if size [
print "ok"
]
I typed it line by line but after ...
5
votes
1answer
99 views
What is the summary of the differences in binding behaviour between Rebol 2 and 3?
The current in-depth documentation on variable binding targets Rebol 2. Could someone provide a summary of differences between Rebol 2 and 3?
6
votes
8answers
189 views
What's the fastest/most efficient way to count lines in Rebol?
Given a string string, what is the fastest/most-efficient way to count lines therein? Will accept best answers for any flavour of Rebol. I've been working under the assumption that the parse [some ...
5
votes
2answers
122 views
Why does return/redo evaluate result functions in the calling context, but block results are not evaluated?
Last night I learned about the /redo option for when you return from a function. It lets you return another function, which is then invoked at the calling site and reinvokes the evaluator from the ...
2
votes
2answers
49 views
Setting a variable to the current script's filename
How would I set a variable to the name of the currently executing script? For example in VBS, it would look something like this: name = WScript.ScriptFullName.
I had tried something similar: Script: ...
1
vote
3answers
65 views
rebol times out when downloading in rapid succession
I have spent hours trying to figure this out, and it seems Rebol just can't do it. Here is a program that downloads all the images from a web page. It was great seeing I could write it in much fewer ...
3
votes
3answers
64 views
Is there a way to center gui buttons and fields in Rebol?
Spent hours trying to figure this out and still haven't got it. None of the documentation mentions anything about it. Is this something rebol just can't do without manually having to rearrange ...
2
votes
2answers
95 views
How to handle timeout periods in Rebol 3 schemes
A common way to initiate the async IO event system in Rebol 3 is to wait on the port. To check for a timeout, a value from the scheme is added to the wait block.
wait [port timeout]
But a default ...
5
votes
1answer
88 views
Why doesn't Rebol 3 honor quoted function parameters that are parenthesized?
The DO dialect uses series of category PAREN! for precedence, and will usually boil away the underlying parentheses structure prior to invoking a function.
However, it used to be possible in Rebol 2 ...
0
votes
1answer
46 views
INTO behavior difference in Rebol 2 parsing vs Rebol 3
Rebol's INTO allows the parser to descend into a series type (e.g. BLOCK! or PAREN!) to apply a match rule to the contents of the block. Here's a simple example in Rebol 3:
data: [(a b)]
parse data ...
5
votes
2answers
72 views
Why doesn't Rebol new-line? treat the newline keyword and the newline character similarly?
I would think that the following Rebol 3 code:
x: [newline 1 2]
y: [
1 2]
print x
print new-line? x
print y
print new-line? y
should output:
<empty line>
1 2
true
<empty line>
1 2
...
11
votes
1answer
171 views
How are words bound within a Rebol module?
I understand that the module! type provides a better structure for protected namespaces than object! or the 'use function. How are words bound within the moduleāI notice some errors related to unbound ...
2
votes
3answers
53 views
How can I work with a single byte and binary! byte arrays in Rebol 3?
In Rebol 2, it is possible to use to char! to produce what is effectively a single byte, that you can use in operations on binaries such as append:
>> buffer: #{DECAFBAD}
>> data: #{FFAE}
...
1
vote
2answers
38 views
Weird behavior with SELECT and the <= and >= operators, returns junk or none
I'm trying to make a map of operators to their opposites in Rebol 2, for instance:
op-map: [
>= [<]
<= [>]
]
This does not work for <=:
>> select op-map to-word ...
5
votes
4answers
200 views
How do you write a codec for Rebol 3?
I wrote a JSON encoder/decoder for Rebol 2. I'm rewriting it for Rebol 3 and would prefer to make it available in Rebol 3 as a codec:
load %data.json
save %data.json object
decode 'json to-binary ...
3
votes
1answer
77 views
Difference between Rebol 2 and Rebol 3 when mixing SOME in parse with CHANGE
Imagine a simplified example of a block of blocks containing words:
samples: [
[a a c a]
[a a c b]
[b a c a]
[c a c b]
[c c c c]
]
Each block needs to be [c c c c]. So if a ...
2
votes
1answer
31 views
Expand the full path of a file! in Rebol without get-modes
In Rebol 2, it is possible to get the full path of a file by using get-modes, e.g.
>> get-modes %foo.r 'full-path
== %/home/hostilefork/foo.r
The function get-modes is not in Rebol 3. How do ...
2
votes
2answers
31 views
What does positional PICK on an object do in Rebol 2, and what's the equivalent Rebol 3?
In Rebol 2:
>> foo: make object! [a: 10 b: 20]
>> foo/a
== 10
>> foo/b
== 20
>> first foo
== [self a b]
>> second foo
== [make object! [
a: 10
b: 20
...












