Tagged Questions
1
vote
2answers
118 views
Is there a more elegant syntax to do this in Rebol?
I'm writing a tutorial on Rebol's Object persistence but I'm not sure if my way is the best
suppose %config.txt contains
a: 1
b: 2
We can then load it with
config: construct load %config.txt
...