Reputation: 21
The word browser is no longer working for me in Rebol2. Perhaps it can't download data from the rebol.com website. How can I get it working? I find nothing about this on stackoverflow.com or doing a google search.
Upvotes: 2
Views: 87
Reputation: 159
You can download the whole package in this zip file: http://re-bol.com/wordbrowser.zip
Upvotes: 1
Reputation: 580
I'm regularly using the word browser, it works well on my GNU/Linux Debian Jessie machine.
>> write %wordbrowser.r read http://re-bol.com/wordbrowser.r
>> do %wordbrowser.r
Is your rebol/view interpreter correctly running?
Upvotes: 0
Reputation: 85
Are you sure you're not looking for browse instead?
>> source browser browser: undefined >> source browse browse: native [ "Opens the default web browser." value [any-string!] "The URL or file to open" /only "Don't open a new window if possible" ]
Upvotes: 1