How to get a function with a refinement

Started by Endo on 10-Jun-2010/10:20:03-7:00
I can do this, r: :random r 100 >> 43 is it possible to get a function with one of its refinements? r: :random/only >> ** Script Error: random is missing its value argument
I guess the nearest method can be: r: 'random/only do r There are probably better ways?
r: func [x] [random/only x]
Also: r: :random r/only 100
Thanks, I was wondering is it possible to use get-word with refinement. I used all of them you mentioned :)

Reply