Tagged Questions
0
votes
3answers
28 views
How do I invoke an object function using its string name
Any idea why the following doesn't work? (R3)
o: make object! [
foo: does [do "bar"]
bar: does [print "hello from bar"]
]
o/foo
** Script error: bar has no value
** Where: catch either ...
0
votes
2answers
73 views
Passing quoted arguments to a REBOL 3 script
I've found it almost impossible to pass quoted arguments (containing spaces) to REBOL 3 scripts. For example:
rebol -q script.r "foo bar" 40
If you examine system/script/args, it contains the ...