[REBOL] Re: pair-edit style - desktop url argument
From: anton:lexicon at: 28-Jun-2002 1:17
What? Or, not true, check this:
>> f: func ['n][probe n print mold type? n] ; taken literally
>> f foot/war ; but not given literally
foot/war
path!
>> f /foot/war ; try a path beginning with a slash
/foot
refinement!
== /war
Either way, it doesn't look like we can pass
a path that begins with a slash.
>> f '/root/war
** Syntax Error: Invalid word-lit -- '
** Near: (line 1) f '/root/war
Oops. I'll tell you why. A path beginning with a slash is
not a path! - it's actually a refinement! (or a number of refinements)
Anton.