VocabularyurlsInputsOutputsWord descriptionBuilds a URL by filling in missing components of
url from
base.
ExamplesUSING: prettyprint urls ;
URL" http://factorcode.org"
URL" binaries.fhtml" derive-url .
URL" http://factorcode.org/binaries.fhtml"
USING: prettyprint urls ;
URL" http://www.truecasey.com/drinks/kombucha"
URL" master-cleanser" derive-url .
URL" http://www.truecasey.com/drinks/master-cleanser"
USING: prettyprint urls ;
"https://factorcode.org"
"index.html" derive-url .
URL" https://factorcode.org/index.html"
Definition